@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #07070a;
    --bg-card: rgba(20, 20, 25, 0.7);
    --bg-card-hover: rgba(30, 30, 40, 0.9);
    --primary: #4f46e5;
    --primary-glow: rgba(79, 70, 229, 0.6);
    --secondary: #0ea5e9;
    --accent: #10b981;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.2);
    --glass-bg: rgba(10, 10, 15, 0.6);
    --glass-blur: blur(20px);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; position: relative; }

/* Background Animated Orbs */
.bg-orbs { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; animation: float 20s infinite ease-in-out alternate; }
.orb-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: var(--secondary); bottom: -200px; right: -100px; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: var(--accent); top: 40%; left: 40%; animation-delay: -10s; opacity: 0.2; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 100px) scale(1.2); }
    100% { transform: translate(-50px, 50px) scale(0.9); }
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Typography Highlights */
.gradient-text { background: linear-gradient(135deg, #fff 0%, #94a3b8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-primary { background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Glossy Navbar */
header { position: fixed; width: 100%; top: 0; z-index: 1000; background: var(--glass-bg); backdrop-filter: var(--glass-blur); border-bottom: 1px solid var(--border); transition: all 0.4s ease; padding: 15px 0; }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); transition: 0.3s; }
.logo:hover img { filter: drop-shadow(0 0 15px var(--primary)); }
.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-menu a { color: var(--text-main); font-weight: 500; font-size: 16px; position: relative; padding: 5px 0; }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease; }
.nav-menu a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 15px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: 12px; font-weight: 600; font-size: 15px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, #3730a3 100%); color: #fff !important; box-shadow: 0 4px 15px var(--primary-glow); border: 1px solid rgba(255,255,255,0.1); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px var(--primary-glow); background: linear-gradient(135deg, #5b54fa 0%, #4338ca 100%); }
.btn-glass { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid var(--border); color: var(--text-main); }
.btn-glass:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--border-highlight); transform: translateY(-3px); }

/* Advanced Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 150px 0 100px; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; background: rgba(14, 165, 233, 0.1); border: 1px solid rgba(14, 165, 233, 0.2); border-radius: 100px; color: var(--secondary); font-size: 14px; font-weight: 600; margin-bottom: 30px; animation: fadeInUp 1s ease both; }
.hero h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 25px; letter-spacing: -2px; animation: fadeInUp 1s ease 0.2s both; }
.hero p { font-size: 20px; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; animation: fadeInUp 1s ease 0.4s both; }
.hero-actions { display: flex; gap: 20px; justify-content: center; animation: fadeInUp 1s ease 0.6s both; }

/* Glossy Domain Search (Main Page) */
.search-container { margin-top: 60px; animation: fadeInUp 1s ease 0.8s both; max-width: 800px; width: 100%; margin-left: auto; margin-right: auto; }
.glass-search { background: var(--bg-card); backdrop-filter: blur(16px); border: 1px solid var(--border); border-radius: 20px; padding: 10px; display: flex; box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.05); transition: 0.3s; }
.glass-search:focus-within { border-color: var(--primary); box-shadow: 0 0 30px rgba(79, 70, 229, 0.3); }
.glass-search input { flex: 1; background: transparent; border: none; color: white; padding: 15px 25px; font-size: 18px; outline: none; }
.glass-search input::placeholder { color: #64748b; }
.glass-search button { background: var(--primary); color: white; border: none; padding: 0 40px; border-radius: 14px; font-weight: 700; font-size: 16px; cursor: pointer; transition: 0.3s; box-shadow: 0 0 15px var(--primary-glow); }
.glass-search button:hover { background: #5b54fa; transform: scale(1.02); }

/* Features / Services Grid */
.section-pad { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 48px; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.section-header p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 40px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; backdrop-filter: blur(10px); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at top right, rgba(255,255,255,0.05) 0%, transparent 60%); pointer-events: none; }
.service-card:hover { transform: translateY(-10px); border-color: var(--border-highlight); background: var(--bg-card-hover); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-icon { width: 70px; height: 70px; border-radius: 20px; background: rgba(255,255,255,0.03); display: flex; align-items: center; justify-content: center; margin-bottom: 30px; border: 1px solid var(--border); transition: 0.4s; font-size: 32px; box-shadow: inset 0 0 20px rgba(255,255,255,0.02); }
.icon-mc { color: var(--accent); border-color: rgba(16, 185, 129, 0.3); box-shadow: 0 0 20px rgba(16, 185, 129, 0.2); }
.icon-domain { color: var(--secondary); border-color: rgba(14, 165, 233, 0.3); box-shadow: 0 0 20px rgba(14, 165, 233, 0.2); }
.icon-bot { color: var(--primary); border-color: rgba(79, 70, 229, 0.3); box-shadow: 0 0 20px rgba(79, 70, 229, 0.2); }
.service-card h3 { font-size: 28px; font-weight: 700; margin-bottom: 15px; }
.service-card p { color: var(--text-muted); margin-bottom: 30px; font-size: 16px; }
.service-card .btn { width: 100%; }

/* Stats Section */
.stats-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 50px; backdrop-filter: blur(10px); text-align: center; }
.stat-item h4 { font-size: 48px; font-weight: 900; color: var(--text-main); margin-bottom: 10px; background: linear-gradient(to right, #fff, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-item p { color: var(--text-muted); font-weight: 500; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }

/* Product Pricing Grids (For separate HTML files) */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 40px; position: relative; transition: 0.4s; backdrop-filter: blur(10px); overflow: hidden; }
.price-card::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(transparent, transparent, transparent, var(--primary)); animation: rotate 4s linear infinite; opacity: 0; transition: 0.4s; z-index: -1; }
.price-card:hover::after { opacity: 0.15; }
.price-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(79, 70, 229, 0.2); }
.price-header { border-bottom: 1px solid var(--border); padding-bottom: 25px; margin-bottom: 25px; }
.price-header h3 { font-size: 24px; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.price-value { font-size: 48px; font-weight: 900; color: #fff; display: flex; align-items: baseline; gap: 5px; }
.price-value span { font-size: 18px; color: var(--text-muted); font-weight: 500; }
.features-list li { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px dashed rgba(255,255,255,0.05); color: #cbd5e1; }
.features-list li:last-child { border-bottom: none; }
.features-list li span { color: var(--text-main); font-weight: 600; }
.badge-popular { position: absolute; top: 20px; right: -35px; background: var(--primary); padding: 5px 40px; transform: rotate(45deg); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 0 15px var(--primary-glow); }

@keyframes rotate { 100% { transform: rotate(360deg); } }

/* Footer - Glossy & Massive */
footer { background: rgba(5, 5, 8, 0.9); border-top: 1px solid var(--border); padding: 80px 0 30px; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-about img { height: 50px; margin-bottom: 20px; }
.footer-about p { color: var(--text-muted); max-width: 300px; margin-bottom: 20px; }
.footer-title { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: var(--text-muted); font-weight: 500; transition: 0.3s; display: inline-block; }
.footer-links a:hover { color: var(--primary); transform: translateX(5px); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-menu, .nav-actions .btn-glass { display: none; }
    .hero h1 { font-size: 3rem; }
    .glass-search { flex-direction: column; background: transparent; border: none; box-shadow: none; padding: 0; }
    .glass-search input { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; }
    .glass-search button { padding: 15px; border-radius: 12px; }
    .stats-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
