@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Outfit:wght@400;600;800&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --sage: #7E997C;
    --sky: #78B1D1;
    --deep-green: #2D4F3E;
    --soft-bg: #F9FBFA;
    --white: #ffffff;
    --gray: #64748b;
    --font-heading: 'Outfit', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(45, 79, 62, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    /* Globally remove bullets */
}

body {
    background-color: var(--soft-bg);
    color: var(--deep-green);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
}

.script {
    font-family: var(--font-script);
    color: var(--sage);
    font-size: 1.2em;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--sky));
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--sage);
    height: 100px;
    /* Compact height */
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    /* Logo left, menu right */
    align-items: center;
    width: 100%;
}

/* Custom UI Logo */
.logo-ui-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-leaf-icon {
    height: 45px;
    /* Matches text height precisely */
    width: 45px;
    flex-shrink: 0;
}

.logo-img-wrapper {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
}

.logo-fallback svg {
    width: 60px;
    height: 60px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.logo-title {
    font-family: var(--font-heading);
    /* Modern corporate font */
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--deep-green);
    margin-bottom: -1px;
    line-height: 1;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--sage);
    font-family: var(--font-heading);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 20px;
    /* More space between items */
    align-items: center;
    margin: 0 40px;
    /* Better separation */
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-green);
    font-weight: 700;
    font-size: 1rem;
    /* Balanced size */
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.dot {
    color: var(--deep-green);
    font-size: 1.2rem;
    font-weight: 900;
}

.nav-links a:hover {
    color: var(--sage);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    /* Matched nav height */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-content {
    background: rgba(255, 255, 255, 0.85);
    padding: 3.5rem;
    border-radius: 40px 0 40px 0;
    max-width: 600px;
    backdrop-filter: blur(10px);
    border-left: 10px solid var(--sage);
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--sage);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--sage);
    color: white;
    box-shadow: 0 10px 20px rgba(126, 153, 124, 0.3);
}

.btn-primary:hover {
    background: var(--deep-green);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--sky);
    color: var(--sky);
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--sky);
    color: white;
}

/* Services */
.services {
    padding: 10rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 5px solid transparent;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--sky);
}

.service-icon {
    font-size: 3rem;
    color: var(--sage);
    /* Fixed variable spelling */
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Selling Items */
.products {
    background: var(--sage);
    padding: 10rem 0;
    color: white;
}

.products .section-header h2,
.products .section-header p {
    color: white;
}

.products .section-header h2::after {
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    color: var(--deep-green);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.product-img {
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sage);
}

/* Contact */
.contact {
    padding: 10rem 0;
}

.contact-flex {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1.2;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    background: #f8fafc;
}

/* Footer */
footer {
    padding: 5rem 0;
    background: var(--deep-green);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

footer .logo-title {
    color: white;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-flex {
        flex-direction: column;
    }
}