@import url('../../../../../templates/shells/v1/themes.css');

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}



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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-bg-base);
    overflow-x: hidden;
}

h1,
h2,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-bg-top);
}

h3 {
    color: var(--color-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 20px 0;
}

.text-center {
    text-align: center;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--green-gradient);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-accent {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(140, 198, 63, 0.4);
    font-weight: 800;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91, 163, 26, 0.5);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: var(--color-bg-top);
}

/* ═══════════════════════════════════════
   HEADER + DROPDOWN NAV
   ═══════════════════════════════════════ */
.header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(27, 107, 46, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    height: 70px;
    box-shadow: 0 4px 30px rgba(27, 107, 46, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent-gradient);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-brand);
}

.nav-cta {
    background: var(--accent-gradient);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 163, 26, 0.4);
}

.nav-cta::after {
    display: none;
}

/* ── Dropdown Navigation ── */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown>.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link .dropdown-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(14, 59, 26, 0.18);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border: 1px solid rgba(27, 107, 46, 0.08);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

/* Invisible bridge so hover doesn't break going from link to dropdown */
.nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.25s ease;
}

.dropdown-menu a:hover {
    background: rgba(140, 198, 63, 0.1);
    color: var(--color-brand);
    padding-left: 28px;
}

.dropdown-menu a i {
    font-size: 0.85rem;
    color: var(--color-brand);
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: rgba(27, 107, 46, 0.08);
    margin: 6px 16px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-bg-top);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    height: 100vh;
    min-height: 700px;
    min-height: 100dvh;
    background-image: url('../assets/hero_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 59, 26, 0.92) 0%, rgba(27, 107, 46, 0.75) 60%, rgba(14, 59, 26, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    padding-top: var(--header-height);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-gradient);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--color-accent);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.92;
    font-weight: 300;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
}

.hero-stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ═══════════════════════════════════════
   SECTION TITLES
   ═══════════════════════════════════════ */
.section-label {
    display: inline-block;
    background: var(--accent-gradient);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--color-text), var(--color-brand));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title.white {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
}

/* ═══════════════════════════════════════
   CARDS
   ═══════════════════════════════════════ */
.card-hover {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(27, 107, 46, 0.06);
    position: relative;
    overflow: hidden;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-hover:hover::before {
    transform: scaleX(1);
}

/* ═══════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(27, 107, 46, 0.1), rgba(27, 107, 46, 0.06));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-brand);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.card-hover:hover .service-icon {
    background: var(--green-gradient);
    color: #fff;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

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

.learn-more {
    color: var(--color-brand);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.learn-more:hover {
    gap: 14px;
    color: var(--color-accent);
}

/* Service Mini Card */
.service-mini-card {
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(27, 107, 46, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.service-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-brand);
}

.service-mini-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(27, 107, 46, 0.1), rgba(14, 59, 26, 0.08));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-brand);
}

.service-mini-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.service-mini-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ═══════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════ */
.bg-light {
    background-color: #fff;
    position: relative;
}

.bg-green {
    background: var(--green-gradient);
    position: relative;
    overflow: hidden;
}

.bg-green::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--color-text);
}

.feature-list i {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* About work image */
.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 480px;
}

.about-work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-img-wrap:hover .about-work-img {
    transform: scale(1.03);
}

/* ═══════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════ */
.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--green-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(27, 107, 46, 0.35);
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(27, 107, 46, 0.4), transparent);
    transform: translateY(-50%);
}

.process-grid .process-step:last-child .step-number::after {
    display: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════ */
.cta-band {
    background: var(--accent-gradient);
    padding: 60px 0;
    text-align: center;
}

.cta-band h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 12px;
    -webkit-text-fill-color: #fff;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--green-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.contact-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

/* CTA Contact Box */
.cta-contact-box {
    background: var(--green-gradient);
    border-radius: var(--radius-md);
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 340px;
}

.cta-contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-contact-icon i {
    font-size: 2.2rem;
    color: #25D366;
}

.cta-contact-box h3 {
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 12px;
    -webkit-text-fill-color: #fff;
}

.cta-contact-box>p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    font-size: 1rem;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: var(--color-bg-top);
    color: var(--color-text);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 120px;
    margin-bottom: 16px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: var(--color-text);
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 36px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--color-icon-dim, var(--color-text-muted));
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.contact-info i {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--color-surface-alt, rgba(0, 0, 0, 0.06));
    border: 1px solid var(--border-soft, rgba(0, 0, 0, 0.1));
    color: var(--color-text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-gradient);
    color: var(--color-surface);
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding-top: 28px;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-icon-dim, var(--color-text-muted));
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 36px;
    right: 36px;
    background: #25D366;
    color: #fff;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

/* ═══════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════ */
.mb-20 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-top: 30px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 16px;
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Dropdown on mobile: show as nested list */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 4px 0 4px 16px;
        min-width: auto;
        display: none;
        background: rgba(240, 247, 236, 0.6);
        border-radius: var(--radius-sm);
        margin-top: 8px;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-item-dropdown::after {
        display: none;
    }

    .nav-item-dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-item-dropdown.open:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 16px;
        font-size: 0.88rem;
    }

    .hero {
        height: auto;
        min-height: 100svh;
        padding-bottom: 40px;
    }

    .hero-content {
        padding-top: calc(var(--header-height) + 40px);
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 36px;
        padding-top: 24px;
        justify-content: center;
    }

    .hero-stat {
        flex: 0 0 calc(33% - 16px);
        min-width: 80px;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .row {
        gap: 30px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 58px;
        height: 58px;
        font-size: 26px;
    }

    .process-step .step-number::after {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

    .section-padding {
        padding: 20px 0;
    }
}