/* 
  Theme: GoMAAGo Dark Modern
  Font: Outfit (Google Fonts)
*/

:root {
    --bg-color: #0b0f19;
    --bg-dark-2: #101624;
    --primary: #3b82f6;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utils */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

.btn.sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    filter: blur(100px);
    z-index: -1;
    animation: glowMove 15s infinite alternate;
}

@keyframes glowMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(200px, 100px); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo .dot {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 400;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 80%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    width: 500px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
    position: absolute;
    z-index: -1;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    background: rgba(22, 27, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

.card-1 { top: 10%; right: 10%; animation-delay: 0s; }
.card-2 { bottom: 20%; left: 10%; animation-delay: 2s; }
.card-3 { top: 40%; right: 30%; animation-delay: 4s; }

.float-card i { color: var(--accent); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Stats Strip */
.stats-strip {
    padding: 3rem 0;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.tag {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-dark-2);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pos-icon { background: rgba(59, 130, 246, 0.1); color: var(--primary); }
.ecom-icon { background: rgba(236, 72, 153, 0.1); color: var(--accent); }
.acc-icon { background: rgba(139, 92, 246, 0.1); color: var(--secondary); }
.ticket-icon { background: rgba(16, 185, 129, 0.1); color: #10b981; }

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.features-list {
    margin-bottom: 2rem;
}

.features-list span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.features-list i {
    color: var(--primary);
    margin-right: 8px;
}

.btn-link {
    color: var(--text-main);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    color: var(--primary);
    gap: 12px;
}

/* Services */
.section-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.service-info {
    flex: 1;
}

.service-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-item .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-item h4 {
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CSS Art Code Block */
.code-block {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    font-family: monospace;
    color: #569cd6;
    position: relative;
    border: 1px solid #333;
}

.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 5px; margin-bottom: 1rem;}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.line { height: 8px; background: #333; margin-bottom: 10px; border-radius: 4px; }
.w-80 { width: 80%; }
.w-60 { width: 60%; }
.w-90 { width: 90%; }

/* Contact Box */
.contact-wrapper {
    display: flex;
    justify-content: center;
}

.contact-box {
    background: linear-gradient(135deg, var(--bg-dark-2), #1a2236);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    max-width: 900px;
    border: 1px solid var(--glass-border);
}

.contact-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-outline {
    border: 1px solid var(--text-main);
    color: var(--text-main);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
}

.btn-outline:hover {
    background: #fff;
    color: var(--text-dark);
}

/* Footer */
footer {
    padding: 4rem 0 2rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.footer-socials a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(16, 22, 36, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(16, 22, 36, 0.9);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#form-status {
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.status-success {
    color: #10b981;
}

.status-error {
    color: #ef4444;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-visual { margin-top: 3rem; width: 100%; height: 300px; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .section-row { flex-direction: column; }
    
    .menu-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-dark-2);
        width: 100%;
        text-align: center;
        padding: 2rem;
        transition: 0.3s;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 1rem 0; }
}

/* Product Page Details */
.product-hero {
    padding-top: 150px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Professional Polish Updates */

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #c084fc, #f472b6); /* Softer pastel gradient */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800; /* Bolder for impact */
    letter-spacing: -1px;
}

/* Refined Hero */
.hero-subtitle {
    font-size: 1.25rem; /* Larger for readability */
    color: #94a3b8;
    margin-bottom: 2.5rem;
    max-width: 650px; /* Better line length */
    line-height: 1.8;
}

/* Professional Feature Icons */
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)); /* Subtle surface */
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main); /* White icon for clean look */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.feature-text h3 {
    font-size: 2.2rem; /* Larger headings */
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.feature-text p {
    color: #cbd5e1; /* Lighter gray for better contrast */
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Premium Abstract Cards */
.abstract-card {
    width: 450px; /* Slightly wider */
    height: 320px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: rgba(16, 22, 36, 0.4); /* More transparent */
    backdrop-filter: blur(20px); /* Heavy glass effect */
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5), /* Deep shadow */
        inset 0 0 0 1px rgba(255, 255, 255, 0.05); /* Inner light ring */
}

/* Subtle internal glows instead of harsh gradients */
.card-blue { background: radial-gradient(80% 80% at 50% -20%, rgba(59, 130, 246, 0.15), transparent), rgba(16, 22, 36, 0.6); }
.card-purple { background: radial-gradient(80% 80% at 50% -20%, rgba(139, 92, 246, 0.15), transparent), rgba(16, 22, 36, 0.6); }
.card-pink { background: radial-gradient(80% 80% at 50% -20%, rgba(236, 72, 153, 0.15), transparent), rgba(16, 22, 36, 0.6); }

/* Elegant Icon in Card */
.big-icon {
    font-size: 6rem; /* Smaller, more subtle */
    opacity: 0.8; /* More visible but integrated */
    color: rgba(255,255,255,0.05); /* Very subtle watermark look */
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
    animation: float 6s ease-in-out infinite; /* Added Floating Animation */
}

/* Refined Product Mockup Container */
.product-mockup {
    width: 550px;
    height: 380px;
    background: #0f172a;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1); /* Thin elegant border instead of thick bezel */
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.6);
}

.mockup-screen {
    background: linear-gradient(to bottom right, #1e293b, #0f172a); /* Subtle gradient background */
}

/* Tech Specs Grid - Cleaner */
.tech-grid {
    gap: 1.5rem;
}

.tech-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .feature-row, .feature-row.reverse { flex-direction: column; text-align: center; gap: 2rem; }
    .feature-img { width: 100%; }
    .abstract-card { width: 100%; height: 250px; }
    .product-mockup { width: 100%; height: 250px; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Coming Soon Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-dark-2);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: scale(0.9);
    transition: var(--transition);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-close-btn {
    width: 100%;
    display: block;
    text-align: center;
}
