/* Base Styles */
:root {
    --primary-color: #6e42e5;
    --secondary-color: #00c2ff;
    --accent-color: #ff5e94;
    --dark-color: #0a0b1a;
    --light-color: #f8f9ff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    --gradient-start: #6e42e5;
    --gradient-mid: #4c6ef5;
    --gradient-end: #00c2ff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: var(--light-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Background Effects */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0b1a 0%, #1a1b3a 100%);
    z-index: -2;
    overflow: hidden;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    top: -40%;
    right: -30%;
    background: radial-gradient(circle, var(--gradient-start) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(60px);
    animation: pulse 15s infinite alternate;
}

.gradient-bg::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    bottom: -30%;
    left: -20%;
    background: radial-gradient(circle, var(--gradient-end) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(60px);
    animation: pulse 12s infinite alternate-reverse;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=');
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px var(--glass-shadow);
    padding: 30px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Navigation */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
    background: rgba(10, 11, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, #25D366, #128C7E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.logo h1:hover {
    text-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

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

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-top: 40px;
    gap: 30px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3;
    max-width: 800px;
}

.glowing-text {
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
    animation: glow 3s infinite alternate;
}

.inmee-text {
    background: linear-gradient(to right, #25D366, #128C7E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
    font-size: 1.2em;
    position: relative;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(18, 140, 126, 0.8);
    }
}

.hero h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-container {
    margin-bottom: 60px;
    width: 100%;
    max-width: 500px;
}

.whatsapp-text {
    font-size: 1.2rem;
    background: linear-gradient(to right, #25D366, #128C7E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

#waitlist-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

#waitlist-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

#waitlist-form input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.3);
}

.glow-button {
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.whatsapp-button {
    background: linear-gradient(to right, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    flex: 1;
    max-width: 350px;
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: #111;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ECE5DD;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* WhatsApp Header */
.whatsapp-header {
    background-color: #075E54;
    height: 60px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.whatsapp-header-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
}

.whatsapp-back {
    color: white;
    margin-right: 10px;
    font-size: 1.2rem;
}

.whatsapp-profile {
    display: flex;
    align-items: center;
    flex: 1;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.whatsapp-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-info {
    color: white;
}

.whatsapp-info h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.whatsapp-info p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
}

.whatsapp-actions {
    display: flex;
    gap: 20px;
    color: white;
    font-size: 1.1rem;
}

/* WhatsApp Chat */
.whatsapp-chat {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAMAAAC6V+0/AAAAS1BMVEUAAADp6emnp6bg4ODe3t7b29vZ2dnW1tbT09PQ0NDNzc3Kysq/v7+8vLy5ubm2tra0tLSxsbGurq6rq6uoqKilpaWjo6OgoKCdnZ0XLtVXAAAAGXRSTlMAE/Lz9Bj09fb39/j5+vv8/f7+/v7+/v7+3rE/pgAAAKtJREFUGNM9UEcOwzAMk2y3Q3sn//9lBTJQsIEDKYqyBJ0as0ewveYcQFsOHQDyR1FqDQEHKJHEOu0PvzxQYjKQ2nOFdgzfMmASUPx8wKFJmjzigvieWHyRiS0xRaY5TO5hho/nGk6LAw/Y8YfbzMhKOyX+TOIz5M0/NOhjRzh6SQdj6wQ+DDdl7GkgO6oxKsoWJiNKqcFvmsJEWcsmZQq/qOp3vGZ/1q/6A3QwCr9Jj6b2AAAAAElFTkSuQmCC');
    scroll-behavior: smooth;
}

.chat-date {
    text-align: center;
    margin: 5px 0 15px;
}

.chat-date span {
    background-color: rgba(225, 245, 254, 0.92);
    border-radius: 7.5px;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
    color: rgba(0, 0, 0, 0.45);
    font-size: 12.5px;
    padding: 5px 12px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.chat-message {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 7.5px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
    transition: opacity 0.5s ease;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 4px;
    display: block;
    text-align: right;
}

.chat-message.bot {
    background: white;
    color: black;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.chat-message.user {
    background: #DCF8C6;
    color: black;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.fa-check-double {
    color: #4FC3F7;
    font-size: 0.7rem;
    margin-left: 3px;
}

/* WhatsApp Input */
.whatsapp-input {
    height: 60px;
    background-color: #F0F0F0;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.input-actions {
    display: flex;
    align-items: center;
    color: #919191;
    font-size: 1.2rem;
}

.input-actions.left {
    gap: 15px;
    margin-right: 10px;
}

.input-actions.right {
    margin-left: 10px;
}

.input-field {
    flex: 1;
}

.input-field input {
    width: 100%;
    padding: 9px 12px;
    border: none;
    border-radius: 20px;
    background-color: white;
    font-size: 0.9rem;
    outline: none;
}

/* Sections */
section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(to right, #25D366, #128C7E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #25D366, #128C7E);
    border-radius: 10px;
}

/* About Section */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.features-sidebar {
    flex: 1;
    max-width: 500px;
}

.features-sidebar h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(to right, #25D366, #128C7E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card {
    text-align: center;
    transition: all 0.3s ease;
    padding: 15px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #25D366, #128C7E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    line-height: 1.5;
    font-size: 0.9rem;
}

/* How It Works Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 160px 0 100px;
    min-height: 100vh;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p {
    line-height: 1.5;
}

.contact-text a {
    color: var(--light-color);
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--secondary-color);
}

.contact-form-container {
    padding: 30px;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 194, 255, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .glow-button {
    align-self: flex-end;
    margin-top: 10px;
}

.success-message {
    color: #4BB543;
    font-weight: 500;
    padding: 15px;
    border-radius: 10px;
    background: rgba(75, 181, 67, 0.1);
    border: 1px solid rgba(75, 181, 67, 0.3);
}

/* Active nav link */
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a.active::after {
    width: 100%;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* News Ticker */
.news-ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, rgba(37, 211, 102, 0.9), rgba(18, 140, 126, 0.9));
    color: white;
    padding: 10px 0;
    z-index: 99;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    white-space: nowrap;
    animation: ticker-scroll 20s linear infinite;
    padding: 0 20px;
    font-weight: 500;
}

.ticker-content span {
    display: inline-block;
    padding-right: 50px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background: rgba(10, 11, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 40px; /* Add space for the ticker */
}

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

.footer-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, #25D366, #128C7E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.footer-links ul {
    display: flex;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .features-sidebar {
        max-width: 100%;
        margin-top: 50px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .phone-frame {
        width: 280px;
        height: 570px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .phone-frame {
        width: 250px;
        height: 500px;
    }
}
