:root {
    --bg-color: #0b0f19;
    --surface-color: rgba(26, 34, 53, 0.7);
    --surface-border: rgba(255, 255, 255, 0.08);
    --surface-color-hover: rgba(35, 45, 70, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --accent-1: #00f0ff;
    --accent-2: #7000ff;
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 50px 0;
}

.bg-darker {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    color: #fff;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 0, 255, 0.5);
}

.btn-secondary {
    background: var(--surface-color);
    color: var(--text-primary);
    border: 1px solid var(--surface-border);
}

.btn-secondary:hover {
    background: var(--surface-color-hover);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid var(--accent-1);
    color: var(--accent-1);
}

.btn-outline:hover {
    background: var(--accent-1);
    color: #000;
}

.btn-dark {
    background: #111;
    color: #fff;
    border: 1px solid #333;
}

.btn-dark:hover {
    background: #222;
    border-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--surface-border);
    padding: 20px 0;
    transition: padding var(--transition-speed);
}

.navbar.scrolled {
    padding: 10px 0;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:not(.btn):hover {
    color: var(--accent-1);
}

/* Hero Section */
.hero {
    padding: 150px 0 10px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

#domains {
    padding-top: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    color: var(--text-secondary);
}

.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    margin: 10px auto;
    border-radius: 2px;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.domains-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Cards (Glassmorphism) */
.card {
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 30px;
    transition: all var(--transition-speed);
}

.card:hover {
    transform: translateY(-10px);
    background: var(--surface-color-hover);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--accent-1);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Domain Card Specifics */
.domain-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.domain-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    word-break: break-all;
}

.domain-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.domain-actions {
    display: flex;
    gap: 10px;
}

.domain-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #1ebd5b;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* Footer */
.footer {
    background: #05070a;
    padding: 60px 0 20px;
    border-top: 1px solid var(--surface-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-contact h4 {
    margin-bottom: 15px;
}

.footer-contact ul li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.footer-contact ul li a:hover {
    color: var(--accent-1);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Top Contact */
.top-contact {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.top-contact a:hover {
    color: var(--accent-1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--bg-color);
    width: 90%;
    max-width: 500px;
    position: relative;
    padding: 40px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.close-modal:hover {
    color: var(--accent-1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-contact {
        display: none;
    }
    .nav-links {
        display: none; /* In a full build, add a hamburger menu */
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
}
