/* EAVEcore - Main Stylesheet */
/* Professional, authoritative, enterprise-ready design */

:root {
    /* Agents.EAVEcore.com - Premium Embassy/Showroom Theme */
    --primary-color: #0a192f;      /* Dark ocean blue (matches EAVEcore) */
    --primary-light: #112240;      /* Lighter blue for cards */
    --primary-dark: #020c1b;       /* Darkest blue for navbar */
    
    /* Crystal/Emerald from EAVEcore */
    --emerald-color: #10b981;      /* Innovation brand color */
    --emerald-light: #34d399;
    --emerald-dark: #059669;
    
    /* Premium Gold Accents - The "Embassy" Signature */
    --accent-color: #fbbf24;       /* Rich gold - premium showroom */
    --accent-light: #fcd34d;       /* Lighter gold for glow */
    --accent-dark: #f59e0b;        /* Deeper gold for depth */
    
    /* Glass/Crystal Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Semantic Colors */
    --success-color: #27ae60;
    --warning-color: #e67e22;
    --danger-color: #c0392b;
    --info-color: #3498db;
    
    /* Neutrals */
    --text-dark: #2c3e50;
    --text-medium: #7f8c8d;
    --text-light: #95a5a6;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-mono: 'Courier New', Courier, monospace;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Borders & Shadows */
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: #e2e8f0;  /* Light grey text on dark */
    line-height: 1.6;
    background: var(--primary-color);  /* Dark ocean blue */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--primary-dark);  /* Darkest blue */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--glass-shadow);
    border-bottom: 2px solid var(--accent-color);  /* Gold accent line */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background: var(--accent-color) !important;
    padding: 0.75rem 1.5rem !important;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95em;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1em;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.btn-outline {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.8em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.2em;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Problem Section */
.problem-section {
    background: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.problem-icon {
    font-size: 3em;
    margin-bottom: 1rem;
}

.problem-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3em;
}

.problem-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.insight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.insight-box h4 {
    font-size: 1.5em;
    margin-bottom: 1rem;
}

.insight-box p {
    font-size: 1.1em;
    line-height: 1.8;
}

/* Solution Section */
.solution-features {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.feature-large {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-left: 5px solid var(--accent-color);
}

.feature-icon {
    font-size: 4em;
    margin-bottom: 1.5rem;
}

.feature-large h3 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1.15em;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    padding: 0.75rem 0;
    font-size: 1.05em;
    color: var(--text-dark);
    line-height: 1.6;
}

.tech-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Products Section */
.products-section {
    background: var(--bg-light);
}

.product-showcase {
    display: grid;
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
}

.product-card.flagship {
    border: 3px solid var(--accent-color);
}

.product-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-icon {
    font-size: 4em;
}

.product-card h3 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-tagline {
    color: var(--text-medium);
    font-size: 1.1em;
    font-style: italic;
}

.product-description {
    font-size: 1.1em;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.result-metric {
    text-align: center;
}

.metric-value {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-medium);
    font-size: 0.95em;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.mini-feature {
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    font-size: 0.95em;
}

.product-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.coming-soon-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.coming-soon-card h4 {
    font-size: 1.8em;
    margin-bottom: 1rem;
}

.coming-soon-card p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Partnership Section */
.partnership-value {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.value-prop {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.value-prop h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.value-points {
    display: grid;
    gap: 1.5rem;
}

.value-point {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    line-height: 1.7;
}

.value-point strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.partnership-cta {
    text-align: center;
    padding: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
}

.partnership-cta h3 {
    font-size: 2em;
    margin-bottom: 1rem;
}

.partnership-cta p {
    font-size: 1.2em;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.3em;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-column p {
    line-height: 1.7;
    opacity: 0.9;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin: 0.75rem 0;
}

.footer-column a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .section-header h2 {
        font-size: 2em;
    }
    
    .hero-cta,
    .tech-cta,
    .product-cta,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

