* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Roboto', sans-serif; line-height: 1.6; color: #333; position: relative; } .background-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(251, 253, 250, 0.9); z-index: -1; opacity: 0.4; } header { background: rgba(30, 165, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.3); animation: glowing 3s infinite; padding: 2.5rem 0; color: rgb(241, 5, 5); text-align: center; font-weight: bold; opacity: 0.9; position: relative; overflow: hidden; } .header-content h1 { font-family: 'Poppins', sans-serif; font-size: 4.5rem; margin-bottom: 0.5rem; background: linear-gradient(45deg, #01f1f1, #edf398, #ee0505); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: textGlow 3s infinite, slideInFromLeft 1s ease-out forwards; text-transform: uppercase; letter-spacing: 2px; position: relative; transition: all 0.5s ease; } .header-content h1::after { content: 'CleanFamily'; position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: -1; color: rgba(248, 80, 14, 0.979); filter: blur(10px); } .header-content h1:hover { animation: textGlow 1.5s infinite; transform: scale(1.15); } .container { max-width: 1200px; margin: 0 auto; padding: 1rem; } .hero { text-align: center; padding: 3rem 0; animation: textGlow 3s infinite; } .hero h2 { font-size: 4rem; margin-bottom: 2rem; color: #ffffff; font-weight: bolder; } .cta-button, .submit-button { padding: 1rem 2rem; font-size: 1.7rem; border: none; border-radius: 5px; background-color: #41adec; color: rgb(245, 227, 227); cursor: pointer; transition: all 0.3s ease; } .cta-button:hover, .submit-button:hover { background-color: #52fa28; transform: translateY(-5px) scale(1.1); box-shadow: 0 0 30px #52fa28, 0 0 50px #52fa28, 0 0 70px #41adec; } .services { padding: 4rem 0; } .services h2 { font-size: 4rem; text-align: center; margin-bottom: 2rem; color: #09a9e9; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .service-card { position: relative; text-color: rgb(248, 244, 244); background:transparent; padding: 0.4rem; text-align: center; position: relative; box-shadow: 0 2px 5px rgba(52, 255, 1, 0.979); } .discount-bubble { position: absolute; top: -20px; right: -20px; background: #ec2502; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; animation: float 3s ease-in-out infinite; box-shadow: 0 5px 15px rgba(245, 241, 241, 0.993); z-index: 3; } .service-card:hover { transform: translateY(-15px) scale(1.1); animation: glowing 1.5s infinite; } .service-card i { font-size: 10rem; color: #3498db; margin-bottom: 1rem; background: linear-gradient(45deg, #3498db, #2980b9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; transition: transform 0.3s ease; } .service-card:hover i { transform: scale(1.2) rotate(360deg); } .service-card h3 { margin: 1rem 0; font-size: 2em; } .service-card p { margin-bottom: 1rem; font-size: 1.5em; } .contact { padding: 4rem 0; } .contact h2 { text-align: center; margin-bottom: 3rem; color: #04ffff; } .contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; background: rgb(248, 191, 3); padding: 2rem; border-radius: 15px; backdrop-filter: blur(10px); border: 1px solid rgb(208, 7, 248); animation: glowing 3s infinite; } .contact-form input, .contact-form textarea { padding: 1rem; border: 2px solid #fd0b0b; border-radius: 5px; font-size: 1rem; transition: border-color 0.3s ease; } .contact-form input:focus, .contact-form textarea:focus { border-color: #2b9efc; outline: none; } footer { background-color: #0c0c0c; color: rgb(255, 250, 250); text-align: center; padding: 1.5rem 0; margin-top: 2rem; } @media (max-width: 768px) { header { padding: 2rem 0; } .header-content h1 { font-size: 2.8rem; } .header-content p { font-size: 1rem; } .hero { padding: 2rem 0; } .hero h2 { font-size: 1.8rem; padding: 0 1rem; } .cta-button, .submit-button { font-size: 1.2rem; padding: 0.8rem 1.5rem; width: 90%; max-width: 350px; white-space: normal; height: auto; line-height: 1.4; } .services-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 0 1rem; } .service-card { padding: 1.5rem; } .service-card i { font-size: 2rem; } .service-card h3 { font-size: 1.3rem; } .service-card p { font-size: 1rem; } .contact { padding: 2rem 1rem; } .contact-form { padding: 1.5rem; width: 90%; } .contact-form input, .contact-form textarea { font-size: 1rem; padding: 0.8rem; } .price-list li { font-size: 0.85rem; padding: 0.4rem 0; } } @media (max-width: 480px) { .header-content h1 { font-size: 2.2rem; } .hero h2 { font-size: 1.5rem; } .cta-button, .submit-button { font-size: 1.1rem; padding: 0.7rem 1.2rem; } .service-card { margin: 0 0.5rem; } footer p { font-size: 0.9rem; padding: 0 1rem; } } @media (max-height: 600px) and (orientation: landscape) { header { padding: 1rem 0; } .header-content h1 { font-size: 2.5rem; } .hero { padding: 1.5rem 0; } .services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } } @keyframes slideInFromLeft { 0% { transform: translateX(-100%); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } } @keyframes glowing { 0% { box-shadow: 0 0 10px #3498db, 0 0 20px #3498db; } 50% { box-shadow: 0 0 30px #3498db, 0 0 50px #3498db, 0 0 70px #2980b9, 0 0 100px #2980b9; } 100% { box-shadow: 0 0 10px #3498db, 0 0 20px #3498db; } } @keyframes textGlow { 0% { text-shadow: 0 0 10px #01f1f1, 0 0 20px #01f1f1, 0 0 30px #01f1f1; } 50% { text-shadow: 0 0 30px #01f1f1, 0 0 50px #01f1f1, 0 0 70px #edf398, 0 0 100px #ee0505, 0 0 150px #ee0505; transform: scale(1.1); } 100% { text-shadow: 0 0 10px #01f1f1, 0 0 20px #01f1f1, 0 0 30px #01f1f1; } } .header-content h1, .header-content p, .hero h2, .services h2, .contact h2 { animation: slideInFromLeft 1s ease-out forwards; } .slideshow-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; } .slideshow-container .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; transition: opacity 1s ease-in-out; } .slideshow-container .slide.active { opacity: 1; } .price-list { list-style: none; padding: 0; margin-top: 1rem; text-align: left; } .price-list li { padding: 0.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2); font-size: 1.8em; transition: all 0.3s ease; } .price-list li:last-child { border-bottom: none; } .price-list li:hover { transform: translateX(10px); color: #000000; font-weight: bold; } .old-price, .new-price { font-size: 1.8em; } .yearly { font-size: 1.5em; } .button-container { margin: 20px 0; text-align: center; } .effect-button { background-color: #4CAF50; border: none; color: white; padding: 15px 32px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; cursor: pointer; border-radius: 5px; animation: blink 3s infinite; font-weight: bolder; } @keyframes blink { 0% { background-color: #33e239; } 25% { background-color: #901cfc; } 50% { background-color: #FFC300; } 75% { background-color: #1e0ffc; } 100% { background-color: #05ffff; } } .animated-text { opacity: 0; transform: translateY(20px); animation: fadeInUp 0.8s ease forwards; } .text-section { margin-bottom: 1.5em; position: relative; padding-left: 15px; border-left: 3px solid #2196F3; transition: all 0.3s ease; } .text-section:hover { transform: translateX(10px); border-left-color: #FF4081; background: linear-gradient(90deg, rgba(33, 150, 243, 0.1) 0%, transparent 100%); } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .price-list { list-style: none; padding: 0; max-width: 1200px; margin: 0 auto; font-size: 1.1rem; line-height: 1.6; } .text-section { animation: slideIn 0.6s ease-out forwards; opacity: 0; animation-delay: calc(var(--delay) * 0.2s); } @keyframes slideIn { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } } .text-section:hover { box-shadow: 0 0 15px rgb(193, 236, 1); padding: 15px; border-radius: 8px; transition: all 0.3s ease; } .animated-title { position: relative; padding: 20px; margin: 20px 0; text-align: center; overflow: hidden; } .gradient-text { background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96E6A1); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 2.5em; font-weight: 700; display: inline-block; animation: gradientFlow 8s ease infinite; text-transform: uppercase; letter-spacing: 2px; text-shadow: 2px 2px 4px rgba(44, 236, 6, 0.479); } .title-effects { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; } .glowing-line { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: linear-gradient(90deg, transparent, #4ECDC4, transparent); animation: expandLine 3s ease infinite; } .floating-particles { position: absolute; width: 100%; height: 100%; animation: floatParticles 10s linear infinite; } .floating-particles::before, .floating-particles::after { content: ''; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: rgba(83, 83, 83, 0.356); box-shadow: 0 0 20px #2efff1; } .animated-container { background: rgba(241, 239, 239, 0.63); backdrop-filter: blur(10px); border-radius: 20px; padding: 30px; box-shadow: 0 8px 32px rgba(2, 18, 238, 0.986); border: 1px solid rgb(40, 245, 12); transform-style: preserve-3d; perspective: 1000px; animation: containerFloat 6s ease-in-out infinite; } .promo-text, .promo-text-secondary { font-size: 1.8em; margin: 15px 0; background: linear-gradient(45deg, #FF6B6B, #4ECDC4); -webkit-background-clip: text; background-clip: text; color: transparent; transform: translateZ(20px); animation: textPulse 3s ease infinite; } .modern-list { position: relative; z-index: 1; transform-style: preserve-3d; } .modern-list li { transition: all 0.3s ease; transform: translateZ(10px); } .modern-list li:hover { transform: translateZ(30px) scale(1.05); } @keyframes gradientFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } @keyframes expandLine { 0% { width: 0; opacity: 0; } 50% { width: 80%; opacity: 1; } 100% { width: 0; opacity: 0; } } @keyframes floatParticles { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes containerFloat { 0%, 100% { transform: translateY(0) rotateX(0deg); } 50% { transform: translateY(-10px) rotateX(5deg); } } @keyframes textPulse { 0%, 100% { opacity: 1; transform: translateZ(20px) scale(1); } 50% { opacity: 0.8; transform: translateZ(20px) scale(1.05); } } .animated-title:hover .gradient-text { animation: gradientFlow 4s ease infinite; transform: scale(1.1); transition: transform 0.3s ease; } .animated-container:hover { transform: translateY(-5px) rotateX(10deg); box-shadow: 0 15px 35px rgb(2, 18, 238); } @media (max-width: 768px) { .gradient-text { font-size: 1.8em; } .animated-container { padding: 20px; } .promo-text, .promo-text-secondary { font-size: 1.4em; } } .animated-title::before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96E6A1); z-index: -1; filter: blur(20px); opacity: 0; transition: opacity 0.3s ease; } .animated-title:hover::before { opacity: 0.7; } .logo-text { display: flex; justify-content: center; gap: 5px; perspective: 1000px; } .logo-letter { display: inline-block; font-family: 'Poppins', sans-serif; font-size: 4rem; font-weight: 800; position: relative; animation: logoFloat 3s ease-in-out infinite; background: linear-gradient(45deg, #00ff00, #00ffff, #ff00ff); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 2px 2px 10px rgba(0, 255, 0, 0.5), -2px -2px 10px rgba(0, 255, 255, 0.5); transition: all 0.3s ease; } .logo-letter:nth-child(odd) { animation-delay: 0.2s; } .logo-letter:nth-child(even) { animation-delay: 0.3s; } .logo-letter::before { content: ''; position: absolute; width: 100%; height: 100%; background: linear-gradient(45deg, #00ff00, #00ffff, #ff00ff); filter: blur(20px); opacity: 0; transition: opacity 0.3s ease; z-index: -1; } .logo-letter:hover { transform: translateY(-10px) rotate(10deg) scale(1.2); text-shadow: 0 0 20px #00ff00, 0 0 40px #00ffff, 0 0 60px #ff00ff; } .logo-letter:hover::before { opacity: 0.5; } @keyframes logoFloat { 0%, 100% { transform: translateY(0) rotateX(0deg); } 50% { transform: translateY(-15px) rotateX(10deg); } } header::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.2), transparent ); animation: shine 3s infinite; } @keyframes shine { 0% { left: -100%; } 50% { left: 100%; } 100% { left: 100%; } } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } .logo-text:hover { animation: pulse 2s infinite; } @media (max-width: 768px) { .logo-letter { font-size: 2.5rem; } } @media (max-width: 480px) { .logo-letter { font-size: 1.8rem; } .logo-text { gap: 2px; } }