:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --text-light: #666666;
    --accent-color: #00b341;
    --grid-line: #e0e0e0;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --spacing-unit: 2rem;
    --radius-card: 24px;
    --radius-btn: 50px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #000000;
}

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

ul {
    list-style: none;
}

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

/* Animated Grid Lines Background */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.grid-overlay canvas {
    width: 100%;
    height: 100%;
}


/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Letter Animation */
.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: smoothReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    cursor: default;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect for Letters - Light Gray, No Shadow */
.char:hover {
    color: #b0b0b0;
    /* Light gray */
    transform: translateY(-3px);
    /* Subtle lift */
    text-shadow: none;
}

@keyframes smoothReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grid-line);
}

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

.logo img {
    height: 40px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-number {
    font-family: 'Courier New', monospace;
    color: #c0c0c0;
    font-weight: 400;
}

.btn-cta {
    border: 1px solid var(--text-color);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-btn);
}

.btn-cta:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    width: 100%;
    text-align: left;
}

.hero-label {
    font-family: var(--font-display);
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    text-transform: none;
}

.hero-title .highlight {
    color: var(--accent-color);
    display: inline-block;
}

.hero-subtitle {
    max-width: 600px;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c0c0c0;
    transition: all 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
}

.scroll-arrow:hover {
    color: var(--accent-color);
    transform: translateY(5px);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--radius-btn);
}

.btn-primary {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--grid-line);
}

.btn-secondary:hover {
    border-color: var(--text-color);
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

/* Parallax Section */
.parallax-section {
    background-image: url('assets/parallax-new.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 179, 65, 0.3);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.parallax-content h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.parallax-content p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Sections General */
.section {
    padding: 100px 0;
    border-bottom: 1px solid var(--grid-line);
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--grid-line);
    padding-bottom: 1rem;
}

.section-number {
    font-family: var(--font-display);
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
}

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    border: 1px solid var(--grid-line);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: var(--radius-card);
    background-color: #fafafa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    background-color: transparent;
    border: none;
}

.service-card {
    background-color: #fff;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--grid-line);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #ccc;
}

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    background-color: #f5f5f5;
    /* Light gray background */
}

.card-content h3 {
    font-size: 1.25rem;
    margin: 0;
    text-transform: none;
    font-weight: 600;
}

.card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.card-link {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.step {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid var(--grid-line);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-height: 350px;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #ccc;
}

/* Contact Section */
.contact-container {
    display: flex;
    justify-content: center;
}

.contact-content {
    width: 100%;
    max-width: 600px;
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-highlight {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 1rem;
}

.contact-info {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #fafafa;
    border: 1px solid var(--grid-line);
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Email card - spans 2 columns on first row */
.contact-item:nth-child(1) {
    grid-column: span 2;
}

/* WhatsApp card - spans 1 column on first row */
.contact-item:nth-child(2) {
    grid-column: span 1;
}

/* Highlight card - spans all 3 columns on second row */
.contact-item:nth-child(3) {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #f0fff4 0%, #e6f9ed 100%);
    border-color: var(--accent-color);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

.contact-item-highlight:hover {
    transform: translateY(-3px);
}

.contact-icon {
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.contact-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-details a {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-details a:hover {
    color: var(--accent-color);
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for contact cards */
@media (max-width: 1024px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-item:nth-child(1) {
        grid-column: span 1;
    }

    .contact-item:nth-child(2) {
        grid-column: span 1;
    }

    .contact-item:nth-child(3) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-item:nth-child(1),
    .contact-item:nth-child(2),
    .contact-item:nth-child(3) {
        grid-column: span 1;
    }

    .contact-item:nth-child(3) {
        flex-direction: column;
        align-items: flex-start;
    }
}



/* Footer */
.site-footer {
    padding: 4rem 0;
    border-top: 1px solid var(--grid-line);
    background-color: #fafafa;
}

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



.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-light);
}

.footer-links a:hover {
    color: #000;
}

.copyright {
    font-family: var(--font-main);
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .main-nav {
        display: none;
    }

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

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .step {
        padding-right: 0;
    }

    .parallax-section {
        background-attachment: scroll;
    }
}