/* Root Variables */
:root {
    --primary: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --primary-bg: #ecfdf5;
    --dark: #0f172a;
    --slate-600: #475569;
    --slate-800: #1e293b;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 15px -3px rgba(5, 150, 105, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--slate-50);
    color: var(--slate-800);
    line-height: 1.6;
}

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

.hidden {
    display: none !important;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary);
}

.logo span {
    color: var(--dark);
}

.desktop-nav {
    display: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--slate-600);
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 99px;
    box-shadow: var(--shadow);
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.badge {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.text-accent {
    color: var(--primary);
}

.hero-text p {
    color: var(--slate-600);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-hero-main {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-hero-outline {
    background: var(--white);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #e2e8f0;
    transition: 0.3s;
}

.hero-image-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.hero-image-card img {
    width: 100%;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.icon-bg {
    background: var(--primary-bg);
    color: var(--primary);
    padding: 0.5rem;
    border-radius: 50%;
}

.stats-num {
    font-size: 1.5rem;
    font-weight: 900;
}

.stats-label {
    font-size: 0.8rem;
    color: var(--slate-600);
}

/* Sections General */
.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.img-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.img-grid img {
    border-radius: 1rem;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.img-bottom { margin-top: 2rem; }

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-list span {
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
}

/* Services */
.services {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05);
}

.service-icon {
    color: var(--primary);
    background: var(--primary-bg);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.logo-light {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-light span { color: var(--primary); }

/* Mobile Nav */
.mobile-nav {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 1.5rem;
    gap: 1rem;
}

.mobile-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
}