:root {
    /* Color Palette - Deep Forest Growth */
    --primary-green: #013220;
    /* Deep Forest */
    --primary-green-rgb: 1, 50, 32;
    --secondary-green: #9CB08D;
    /* Sage */
    --accent-gold: #C5A059;
    /* Muted Gold */
    --bg-modern: #F9FAFA;
    /* Modern Cloud */
    --text-main: #2D3436;
    --text-muted: #636E72;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Background Pattern */
    --pattern-color: rgba(1, 50, 32, 0.03);
    --bg-pattern: radial-gradient(var(--pattern-color) 1px, transparent 1px);
}

.bg-grain {
    background-image: var(--bg-pattern);
    background-size: 24px 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-modern);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px border rgba(255, 255, 255, 0.3);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(var(--primary-green-rgb), 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(var(--primary-green-rgb), 0.3);
    background-color: #02472d;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Navigation */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(1, 50, 32, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

nav ul li a:hover {
    color: var(--accent-gold);
}

/* Sections General */
section {
    padding: 8rem 0;
}

.accent-text {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 10rem;
    background: var(--bg-modern);
    position: relative;
    overflow: hidden;
    color: var(--text-main);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(197, 160, 89, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(156, 176, 141, 0.12) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    animation: light-drift 20s infinite alternate ease-in-out;
}

/* Light Orbs for premium airy feel */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    z-index: 1;
    filter: blur(60px);
    animation: orb-float 15s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes light-drift {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.1) translate(20px, 10px);
    }
}

@keyframes orb-float {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-50px, 30px) scale(1.2);
    }
}

.hero .badge {
    background: rgba(1, 50, 32, 0.05);
    color: var(--primary-green);
}

.hero h1 {
    color: var(--primary-green);
}

.hero p {
    color: var(--text-muted);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(1, 50, 32, 0.05);
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 3rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--secondary-green);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.1;
    filter: blur(80px);
    animation: blob-morph 15s infinite alternate ease-in-out;
}

.hero-icon-large {
    width: 320px;
    height: 320px;
    filter: drop-shadow(0 20px 50px rgba(1, 50, 32, 0.1));
    animation: float 6s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes blob-morph {
    from {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg);
    }

    to {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
        transform: rotate(45deg);
    }
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

/* Image Wrappers */
.image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-wrapper:hover .portrait {
    transform: scale(1.05);
}

.name-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 10px;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.quote-box {
    margin-top: 3rem;
    padding-left: 2rem;
    border-left: 4px solid var(--accent-gold);
}

.quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.quote-author {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Services */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    padding: 3rem;
    background: var(--white);
    border-radius: 24px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Contact Section */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    padding: 4rem;
    border-radius: 40px;
    background: rgba(1, 50, 32, 0.03);
    overflow: hidden;
}

.contact-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    list-style: none;
    margin-top: 3rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
}

.form-group {
    margin-bottom: 1.5rem;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(1, 50, 32, 0.02);
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 600;
}

/* Growth Framework (Methodology) */
.framework {
    background-color: var(--primary-green);
    color: var(--white);
}

.framework h2 {
    color: var(--white);
    margin-bottom: 4rem;
    text-align: center;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.step-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Results Section */
.results {
    background: var(--white);
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item h3 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Testimonials / Partners */
.partners {
    padding: 4rem 0;
    background: var(--bg-modern);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0.5;
    filter: grayscale(1);
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-green);
}

/* Final CTA */
.final-cta {
    padding: 10rem 0;
    text-align: center;
    background: linear-gradient(rgba(1, 50, 32, 0.95), rgba(1, 50, 32, 0.95)), url('assets/icon.svg');
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
}

.final-cta h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-content,
    .about-grid,
    .contact-card {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    nav ul {
        display: none;
    }
}