:root {
    --primary-emerald: #0D3B2E;
    --emerald-light: #185A47;
    --accent-gold: #B87A28;
    --gold-bright: #D99B36;
    --gold-soft: #F4E8D3;
    --bg-light: #FAF9F6;
    --card-bg: #FFFFFF;
    --card-border: rgba(184, 122, 40, 0.18);
    --text-dark: #111827;
    --text-body: #4B5563;
    --text-muted: #6B7280;
    --shadow-sm: 0 4px 20px rgba(13, 59, 46, 0.05);
    --shadow-md: 0 12px 30px rgba(13, 59, 46, 0.08);
    --shadow-lg: 0 20px 40px rgba(13, 59, 46, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem 0;
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-emerald);
    text-decoration: none;
    letter-spacing: -0.3px;
}

.logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

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

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-emerald), var(--emerald-light));
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(13, 59, 46, 0.25);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 59, 46, 0.35);
    background: linear-gradient(135deg, var(--emerald-light), #1F6F59);
}

.btn-outline {
    background: transparent;
    color: var(--primary-emerald);
    border: 2px solid var(--primary-emerald);
    margin-left: 0.8rem;
}

.btn-outline:hover {
    background: rgba(13, 59, 46, 0.06);
    color: var(--primary-emerald);
}

/* Hero Section */
.hero {
    padding: 11rem 0 6rem 0;
    position: relative;
    background: radial-gradient(circle at 50% 10%, rgba(244, 232, 211, 0.6), transparent 60%),
                radial-gradient(circle at 90% 40%, rgba(24, 90, 71, 0.08), transparent 50%);
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 1.1rem;
    border-radius: 30px;
    background: var(--gold-soft);
    border: 1px solid rgba(184, 122, 40, 0.3);
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -1.2px;
    color: var(--primary-emerald);
}

.hero h1 span {
    color: var(--accent-gold);
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 680px;
    margin: 0 auto 2.5rem auto;
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-emerald);
    font-weight: 800;
}

.about-text p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    padding: 1.8rem 1.2rem;
    border-radius: 18px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0;
}

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

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

.section-header h2 {
    font-size: 2.3rem;
    color: var(--primary-emerald);
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.section-header p {
    color: var(--text-body);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.8rem 2.2rem;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-soft);
    border: 1px solid rgba(184, 122, 40, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--primary-emerald);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    padding-top: 1.2rem;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* Why Choose Us */
.features {
    padding: 5rem 0;
    background: rgba(244, 232, 211, 0.35);
    border-top: 1px solid rgba(184, 122, 40, 0.12);
    border-bottom: 1px solid rgba(184, 122, 40, 0.12);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 18px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--primary-emerald);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-body);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    box-shadow: var(--shadow-md);
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--primary-emerald);
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-body);
    margin-bottom: 2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.info-item i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gold-soft);
    border: 1px solid rgba(184, 122, 40, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 2px;
}

.info-item strong {
    color: var(--primary-emerald);
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1.2rem;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(184, 122, 40, 0.12);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-emerald);
    cursor: pointer;
    padding: 0.3rem;
}

.mobile-cta {
    display: none;
}

/* Footer */
footer {
    background: var(--primary-emerald);
    color: rgba(255, 255, 255, 0.8);
    padding: 2.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .about-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

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

    .nav-btn-desktop {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 0.9rem 1.5rem;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }

    .mobile-cta {
        display: block;
        padding: 1rem 1.5rem 0.5rem 1.5rem;
    }

    .mobile-cta .btn {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 9rem 0 4rem 0;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .btn {
        display: block;
        width: 100%;
        margin: 0 0 0.8rem 0;
    }

    .badge {
        font-size: 0.78rem;
        padding: 0.4rem 0.8rem;
    }

    .about-card,
    .contact-card {
        padding: 1.8rem 1.4rem;
        border-radius: 18px;
    }

    .about-text h2,
    .section-header h2,
    .contact-info h2 {
        font-size: 1.7rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.2rem 0.8rem;
    }

    .stat-item h3 {
        font-size: 1.7rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .info-item {
        gap: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1rem;
    }

    .logo img {
        height: 38px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
