/*
Theme Name: Wotics Digital Growth
Theme URI: https://wotics.local
Author: Wotics Team
Description: Custom WordPress theme optimized for Elementor, converted from design layout.
Version: 1.0.0
Text Domain: wotics
*/

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F8FAFC;
    color: #0A0F1D;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

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

/* Header */
.wotics-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #0022FF;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
}
.nav-links a:hover {
    color: #0022FF;
}
.btn-primary-sm {
    background: #0022FF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* Hero */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
}
.hero-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}
.hero-content {
    flex: 1;
}
.badge {
    background: #e0e7ff;
    color: #0022FF;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}
.hero-content h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 20px 0;
    color: #0A0F1D;
}
.hero-content h1 span {
    color: #0022FF;
}
.hero-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
}
.btn-primary {
    background: #0022FF;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}
.btn-secondary {
    background: #ffffff;
    color: #0A0F1D;
    border: 1px solid #cbd5e1;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}
.hero-graphic {
    flex: 1;
    background: #0A0F1D;
    border-radius: 16px;
    padding: 30px;
    color: #fff;
}
.metric-card {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.metric-card h3 {
    margin: 5px 0 0;
    font-size: 32px;
}
.trend {
    color: #22c55e;
    font-size: 14px;
}
.mini-metrics {
    display: flex;
    gap: 15px;
}
.mini-metrics div {
    background: rgba(255,255,255,0.05);
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}
.mini-metrics strong {
    display: block;
    font-size: 18px;
    margin-top: 5px;
}

/* Stats */
.stats-bar {
    background: #0A0F1D;
    color: #fff;
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-item h3 {
    font-size: 40px;
    color: #38bdf8;
    margin: 0 0 10px;
}
.stat-item p {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
}

/* Services */
.services-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}
.services-section h2 {
    font-size: 36px;
    margin: 15px 0 50px;
}
.services-section h2 span {
    color: #0022FF;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}
.service-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}
.service-card:hover {
    border-color: #0022FF;
    transform: translateY(-5px);
}
.service-card span {
    font-size: 20px;
    font-weight: 700;
    color: #0022FF;
}
.service-card h3 {
    margin: 15px 0 10px;
    font-size: 20px;
}
.service-card p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Footer CTA */
.wotics-footer {
    background: #001188;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.footer-cta-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
}
.footer-cta-box p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
}
