/* =========================================
   Variables & Reset
   ========================================= */
   :root {
    /* Brand Colors extracted from logo */
    --color-primary: #C06BE6;
    --color-secondary: #F79447;
    --color-tertiary: #D87DF3;
    
    /* Dark Theme Colors */
    --bg-dark: #0B0710;
    --bg-card: rgba(25, 18, 36, 0.6);
    --bg-card-hover: rgba(35, 25, 50, 0.8);
    --text-main: #F4F0F8;
    --text-muted: #AFA8BA;
    --border-color: rgba(192, 107, 230, 0.15);
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--color-primary), var(--color-tertiary));
    --grad-secondary: linear-gradient(135deg, var(--color-secondary), #FFB17A);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Effects */
    --shadow-glow-purple: 0 0 40px rgba(192, 107, 230, 0.3);
    --shadow-glow-orange: 0 0 40px rgba(247, 148, 71, 0.2);
    --glass-blur: blur(16px);
}

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

html {
    scroll-behavior: smooth;
}

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

/* =========================================
   Typography & Utilities
   ========================================= */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

h1 span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 span {
    color: var(--color-secondary);
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(192, 107, 230, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(192, 107, 230, 0.4);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow-purple);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: rgba(192, 107, 230, 0.1);
    box-shadow: 0 0 15px rgba(192, 107, 230, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.w-100 {
    width: 100%;
}

/* Glow Effects */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: pulse 8s infinite alternate;
}

.glow-purple {
    background: var(--color-primary);
    width: 400px;
    height: 400px;
}

.glow-orange {
    background: var(--color-secondary);
    width: 350px;
    height: 350px;
}

.glow-top-left { top: -100px; left: -100px; }
.glow-bottom-right { bottom: -100px; right: -100px; }
.glow-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    100% { transform: scale(1.1) translate(20px, 20px); opacity: 0.5; }
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(11, 7, 16, 0.85);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 150px;
    filter: brightness(1.2); /* Enhance logo brightness for dark mode */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(247, 148, 71, 0.15);
    color: var(--color-secondary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(247, 148, 71, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-buttons i {
    margin-left: 0.5rem;
}

/* Mockup UI */
.hero-image {
    position: relative;
    perspective: 1000px;
}

.mockup-card {
    transform: rotateY(-10deg) rotateX(5deg);
    animation: float 6s ease-in-out infinite;
    padding: 0;
    overflow: hidden;
}

@keyframes float {
    0% { transform: translateY(0px) rotateY(-10deg) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateY(-8deg) rotateX(7deg); }
    100% { transform: translateY(0px) rotateY(-10deg) rotateX(5deg); }
}

.mockup-header {
    background: rgba(0,0,0,0.3);
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
}

.dots { display: flex; gap: 6px; }
.dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #ff5f56;
}
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.slideshow-container {
    position: relative;
    width: 100%;
    height: 350px;
    background: #110C17;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.floating-element {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.float-1 {
    top: -20px;
    right: -20px;
    color: var(--color-tertiary);
    animation: float 5s ease-in-out infinite reverse;
}

.float-2 {
    bottom: 20px;
    left: -30px;
    color: #25D366; /* WhatsApp color */
    animation: float 7s ease-in-out infinite 1s;
}

/* =========================================
   Features Section
   ========================================= */
.features {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: left;
    padding: 2.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.purple-gradient { background: var(--grad-primary); box-shadow: var(--shadow-glow-purple); }
.orange-gradient { background: var(--grad-secondary); box-shadow: var(--shadow-glow-orange); }

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* =========================================
   CTA Section
   ========================================= */
.cta {
    padding: 100px 0;
    position: relative;
}

.cta-container {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-container h2 {
    margin-bottom: 1rem;
}

.cta-container p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

/* =========================================
   Footer
   ========================================= */
footer {
    background: #060409;
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 180px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    max-width: 400px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255,255,255,0.06);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple hidden for mobile, can add toggle JS */
    }
    
    .navbar .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}
