/* =========================================
   CSS Variables & Globals
========================================= */
:root {
    --color-primary: #0a2113;
    /* Deep Dark Green */
    --color-secondary: #123e24;
    /* Medium Dark Green */
    --color-accent: #c09e5b;
    /* Elegant Gold */
    --color-accent-hover: #e8c06e;
    /* Lighter Gold */
    --color-dark: #121212;
    /* Elegant Black */
    --color-light: #f5efe8;
    /* Earth Tone Light / Beige */
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-muted: #666666;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial;
    /* Handled by Lenis */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--color-light);
}

.text-center {
    text-align: center;
}

.text-light {
    color: var(--color-white);
}

.accent-gold {
    color: var(--color-accent);
}

/* Typography Utilities */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin-bottom: 40px;
}

.title-divider.center {
    margin: 0 auto 40px auto;
}

.title-divider.light {
    background-color: var(--color-accent);
}

/* =========================================
   Buttons
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* =========================================
   Header
========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.4s ease, padding 0.4s ease;
    background-color: rgba(10, 33, 19, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: 12px 0;
    background-color: rgba(10, 33, 19, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    mix-blend-mode: screen;
    filter: contrast(1.1) brightness(1.05);
    transition: opacity 0.4s ease, height 0.4s ease;
}

.logo-img:hover {
    opacity: 0.85;
}

.header.scrolled .logo-img {
    height: 48px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover::after {
    width: 100%;
}

/* =========================================
   Floating WhatsApp
========================================= */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

/* =========================================
   Hero Section
========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    padding-top: 80px;
    /* Offset for Header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/hero-bg.png');
    /* To be mapped */
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* Dark elegant gradient overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 33, 19, 0.9) 0%, rgba(10, 33, 19, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(30px);
}

.hero-title span {
    color: var(--color-accent);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(30px);
}

.hero-ctas {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    flex-wrap: wrap;
}

/* =========================================
   About Section
========================================= */
.about-section {
    background-color: var(--color-white);
}

.about-text-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text-wrapper .title-divider {
    margin: 0 auto 30px auto;
}

.about-text {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.8;
}

/* =========================================
   Value / Grid Sections
========================================= */
.grid {
    display: grid;
    gap: 30px;
}

.value-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.value-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    border-bottom: 3px solid var(--color-accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    transform: translateZ(20px);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transform: translateZ(15px);
}

.value-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transform: translateZ(10px);
}

/* =========================================
   Founder Section
========================================= */
.founder-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    overflow: hidden;
}

.founder-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.founder-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.founder-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 8px solid rgba(192, 158, 91, 0.2);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: floating 3s ease-in-out infinite;
}

.founder-content {
    flex: 1.2;
}

.founder-body p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.7;
}

.founder-body strong {
    color: var(--color-accent);
    font-weight: 600;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* =========================================
   Services Section
========================================= */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    margin-bottom: 50px;
}

.service-item {
    background-color: var(--color-white);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-item i {
    font-size: 2rem;
    color: var(--color-accent);
    background: rgba(192, 158, 91, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-item h4 {
    font-size: 1.1rem;
    margin: 0;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* =========================================
   Process Timeline
========================================= */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: rgba(10, 33, 19, 0.1);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 42px;
    height: 42px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 0 0 5px var(--color-white);
}

.step-content {
    background: var(--color-light);
    padding: 30px;
    border-radius: 4px;
    flex: 1;
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 15px;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--color-light) transparent transparent;
}

.step-content h4 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--color-text-muted);
    margin: 0;
}

/* =========================================
   Testimonials
========================================= */
.testimonials-section {
    padding-bottom: 120px;
}

.testimonials-slider {
    padding: 20px 10px 50px 10px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 50px 40px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(192, 158, 91, 0.3);
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.swiper-pagination-bullet {
    background-color: var(--color-primary);
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-accent);
}

/* =========================================
   Platform Banner
========================================= */
.platform-banner {
    background-color: #0d1a12;
    color: rgba(255, 255, 255, 0.7);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.platform-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.platform-icon {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.platform-content span {
    color: var(--color-white);
    font-weight: 500;
}

/* =========================================
   Final CTA
========================================= */
.final-cta {
    background-image: linear-gradient(rgba(10, 33, 19, 0.95), rgba(10, 33, 19, 0.95)), url('./assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    padding: 120px 0;
}

.cta-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   Footer
========================================= */
.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer h4 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--color-accent);
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* =========================================
   Responsive
========================================= */
@media (max-width: 992px) {
    .founder-container {
        flex-direction: column;
        text-align: center;
    }

    .founder-badge {
        right: 0;
        left: 0;
        margin: auto;
        width: max-content;
    }

    .hero-title {
        font-size: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        /* Simplification for this LP, could add hamburger */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .founder-image {
        width: 300px;
        height: 300px;
    }

    .platform-content {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}