/* style.css - Ameraa Hub Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.7;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
header {
    background: #0f172a;
    color: #f1f5f9;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-bottom: 2px solid #14b8a6;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    color: #f1f5f9;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span {
    color: #14b8a6;
}

nav a {
    color: #cbd5e1;
    margin-left: 28px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 1rem;
}
nav a:hover {
    color: #14b8a6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    padding: 80px 0 70px;
    text-align: center;
    border-bottom: 4px solid #14b8a6;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.hero h1 i {
    color: #14b8a6;
    font-style: normal;
}
.hero p {
    font-size: 1.3rem;
    max-width: 780px;
    margin: 0 auto 30px;
    color: #e2e8f0;
}
.hero .badge {
    display: inline-block;
    background: #14b8a6;
    color: #0f172a;
    padding: 8px 28px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Scroll Animation Base */
.anim-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* General Sections */
section {
    padding: 70px 0;
    border-bottom: 1px solid #e9edf2;
}
section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
h2 i {
    color: #14b8a6;
    font-style: normal;
}
.lead {
    font-size: 1.15rem;
    color: #475569;
    max-width: 800px;
    margin-bottom: 40px;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    border: 1px solid #eef2f6;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(15,23,42,0.08);
}
.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #0f172a;
}
.card p {
    color: #475569;
}

.icon-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: #14b8a6;
}

/* Disclaimer box */
.disclaimer-box {
    background: #fff9e6;
    border-left: 6px solid #f59e0b;
    padding: 20px 28px;
    border-radius: 12px;
    margin: 30px 0;
    font-size: 0.95rem;
    color: #78350f;
    border: 1px solid #fde68a;
    border-left-width: 6px;
}

/* Footer */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 0 24px;
    margin-top: 20px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.footer-inner a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.2s;
}
.footer-inner a:hover {
    color: #14b8a6;
}
.footer-copy {
    text-align: center;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #1e293b;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .grid-2col, .grid-3col { grid-template-columns: 1fr; gap: 24px; }
    .header-inner { flex-direction: column; gap: 12px; }
    nav a { margin: 0 12px; }
    section { padding: 40px 0; }
}