* { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary: #2563eb; --primary-dark: #1e40af; --secondary: #10b981; --dark: #1e293b; --light: #f8fafc; --gray: #64748b; --border: #e2e8f0; --shadow: rgba(0, 0, 0, 0.1); } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; color: var(--dark); background-color: var(--light); } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } header { background: white; box-shadow: 0 2px 10px var(--shadow); position: sticky; top: 0; z-index: 1000; } nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; } .logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); } .nav-links { display: flex; list-style: none; gap: 2rem; } .nav-links a { color: var(--dark); text-decoration: none; font-weight: 500; transition: color 0.3s; } .nav-links a:hover { color: var(--primary); } .hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 100px 0; text-align: center; } .hero h1 { font-size: 3rem; margin-bottom: 1rem; animation: fadeInUp 0.8s ease-out; } .hero-subtitle { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.95; animation: fadeInUp 0.8s ease-out 0.2s backwards; } .cta-button { display: inline-block; padding: 1rem 2.5rem; background: var(--secondary); color: white; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 1.1rem; transition: transform 0.3s, box-shadow 0.3s; animation: fadeInUp 0.8s ease-out 0.4s backwards; } .cta-button:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3); } .domains-section { padding: 80px 0; background: white; } .domains-section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: var(--dark); } .domains-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; } .domain-card { background: white; border: 2px solid var(--border); border-radius: 15px; padding: 2rem; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; } .domain-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px var(--shadow); border-color: var(--primary); } .domain-name { font-size: 1.8rem; font-weight: bold; color: var(--primary); margin-bottom: 0.5rem; } .domain-description { color: var(--gray); margin-bottom: 1.5rem; min-height: 50px; } .domain-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; } .feature { background: var(--light); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.9rem; color: var(--gray); } .domain-price { font-size: 1.5rem; font-weight: bold; color: var(--secondary); margin: 1rem 0; padding: 0.5rem; background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05)); border-radius: 8px; text-align: center; } .inquiry-btn { width: 100%; padding: 0.8rem; background: var(--primary); color: white; border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.3s, transform 0.2s; } .inquiry-btn:hover { background: var(--primary-dark); transform: scale(1.02); } .inquiry-btn:active { transform: scale(0.98); } .about-section { padding: 80px 0; background: var(--light); } .about-section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: var(--dark); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; } .feature-card { background: white; padding: 2rem; border-radius: 15px; text-align: center; box-shadow: 0 5px 20px var(--shadow); transition: transform 0.3s; } .feature-card:hover { transform: translateY(-5px); } .feature-icon { font-size: 3rem; margin-bottom: 1rem; } .feature-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--dark); } .feature-card p { color: var(--gray); } .contact-section { padding: 80px 0; background: white; } .contact-section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; color: var(--dark); } .contact-subtitle { text-align: center; color: var(--gray); margin-bottom: 3rem; font-size: 1.1rem; } .contact-form { max-width: 600px; margin: 0 auto; background: var(--light); padding: 2.5rem; border-radius: 15px; box-shadow: 0 5px 20px var(--shadow); } .form-group { margin-bottom: 1.5rem; } .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--dark); } .form-group input, .form-group textarea { width: 100%; padding: 0.8rem; border: 2px solid var(--border); border-radius: 8px; font-size: 1rem; font-family: inherit; transition: border-color 0.3s, box-shadow 0.3s; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); } .captcha-group { display: flex; flex-direction: column; position: relative; } .captcha-group input { padding-right: 50px; } .refresh-captcha { position: absolute; right: 10px; bottom: 10px; background: var(--primary); color: white; border: none; width: 35px; height: 35px; border-radius: 50%; cursor: pointer; font-size: 1rem; transition: background 0.3s, transform 0.2s; } .refresh-captcha:hover { background: var(--primary-dark); transform: rotate(180deg); } .submit-btn { width: 100%; padding: 1rem; background: var(--primary); color: white; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: background 0.3s, transform 0.2s; } .submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); } .submit-btn:active { transform: translateY(0); } .submit-btn:disabled { background: var(--gray); cursor: not-allowed; transform: none; } .form-message { padding: 1rem; border-radius: 8px; margin-bottom: 1rem; display: none; animation: slideDown 0.3s ease-out; } .form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #10b981; display: block; } .form-message.error { background: #fee2e2; color: #991b1b; border: 1px solid #ef4444; display: block; } footer { background: var(--dark); color: white; padding: 2rem 0; text-align: center; } .footer-links { margin-top: 1rem; display: flex; justify-content: center; gap: 2rem; } .footer-links a { color: white; text-decoration: none; opacity: 0.8; transition: opacity 0.3s; } .footer-links a:hover { opacity: 1; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 768px) { .hero h1 { font-size: 2rem; } .hero-subtitle { font-size: 1.1rem; } .nav-links { gap: 1rem; } .domains-section h2, .about-section h2, .contact-section h2 { font-size: 2rem; } .domains-grid, .features-grid { grid-template-columns: 1fr; } .contact-form { padding: 1.5rem; } } @media (max-width: 480px) { .hero { padding: 60px 0; } .hero h1 { font-size: 1.8rem; } .nav-links { flex-direction: column; gap: 0.5rem; font-size: 0.9rem; } .logo { font-size: 1.2rem; } .domain-name { font-size: 1.5rem; } .domains-section, .about-section, .contact-section { padding: 50px 0; } }