@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&display=swap');

:root {
    --primary: #d32f2f;
    --primary-light: #ff6659;
    --primary-dark: #9a0007;
    --text-main: #2d3748;
    --text-light: #718096;
    --bg-page: #f8fafc;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    overflow-x: hidden;
}

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

/* Navbar Baru */
.navbar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}
.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}
.brand-text h1 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}
.brand-text span {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}
.btn-login {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    border: 2px solid var(--primary);
}
.btn-login:hover {
    background: transparent;
    color: var(--primary);
}

/* Hero Section Unik */
.hero {
    position: relative;
    height: 600px;
    background: url('https://images.unsplash.com/photo-1581594693702-fbdc51b2763b?auto=format&fit=crop&q=80&w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(154, 0, 7, 0.85) 0%, rgba(211, 47, 47, 0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}
.hero-content h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Floating Quick Actions */
.quick-actions {
    position: relative;
    z-index: 20;
    margin-top: -60px;
}
.qa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}
.qa-card {
    padding: 35px 30px;
    text-align: center;
    border-right: 1px solid var(--bg-page);
    transition: 0.3s;
}
.qa-card:hover {
    background: var(--primary);
    color: var(--white);
}
.qa-card:hover p, .qa-card:hover h3 {
    color: var(--white);
}
.qa-icon {
    font-size: 32px;
    margin-bottom: 15px;
}
.qa-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}
.qa-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Features/About */
.features {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header span {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}
.section-header h2 {
    font-size: 36px;
    color: var(--text-main);
    margin-top: 10px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.srv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    border-bottom: 4px solid transparent;
    transition: 0.4s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.srv-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary);
    box-shadow: 0 20px 30px rgba(211, 47, 47, 0.1);
}
.srv-card h4 {
    font-size: 20px;
    margin: 20px 0 10px 0;
    color: var(--text-main);
}
.srv-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Call to Action Footer */
.cta-section {
    background: var(--primary-dark);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    margin-top: 50px;
}
.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
