:root {
    --primary-green: #a6df39;
    --dark-bg: #ffffff;   /* page becomes white */
    --card-bg: #f5f5f5;   /* light cards */
    --text-white: #000000; /* ALL text becomes black */
    --text-gray: #555555;  /* readable gray */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 18px;
    margin-left: auto;
    margin-right: 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-green);
}

.hero { display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90vh;
    padding: 0 8%; 
    gap: 30px; 
    overflow: hidden; 
    position: relative; }

/* --- TEXT --- */
.hero-content {
    width: 50%;
    min-width: unset;
    z-index: 2;
}

/* HEADING */
.hero-title {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 800px;
    white-space: normal;
}

.hero-title span {
    display: block;
    white-space: normal;
}

/* PARAGRAPH */
.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 520px;
}
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-image {
    position: relative;
    z-index: 1;
}
/* HIGHLIGHT */
.highlight {
    color: var(--primary-green);
}

/* BUTTONS */
.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* --- IMAGE --- */
.hero-image {
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: flex-end; /* 👈 pushes cat toward text */
    align-items: center;
    width: 50%;
}

/* 🐱 CAT (FIXED ALIGNMENT) */
.hero-image img {
    width: 950px;
    max-width: none;
    position: relative;
    z-index: 2;

    transform: translateX(-60px); /* 👈 KEY FIX (move left more) */

    filter: drop-shadow(0 40px 100px rgba(166,223,57,0.45));
}

.hero-image::before {
    content: "";
    position: absolute;

    width: 600px;
    height: 600px;

    top: 75%; /* 👈 move upward so it reaches header */
    left: 50%;
    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(166,223,57,0.25) 0%,
        rgba(166,223,57,0.1) 40%,
        rgba(255,255,255,0) 70%
    );

    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        #ffffff
    );

    pointer-events: none;
    z-index: 2;
}
/* --- MOBILE --- */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding-top: 60px;
    }

    .hero-content {
        width: 100%;
        min-width: unset;
    }

    .hero-title {
        font-size: 2.8rem;
        white-space: normal;
    }

    .hero-title span {
        display: block;
    }

    .hero-content p {
        margin: 0 auto 25px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image img {
        width: 320px;
        transform: none; /* reset for mobile */
        margin-top: 30px;
    }
}

/* --- OTHER HERO PAGES --- */
.hero-about {
    display: flex;
    align-items: center; /* centers vertically */
    justify-content: space-between;

    padding: 40px 8%;
    gap: 40px;
}

/* IMAGE LEFT */

/* IMAGE LEFT */
.hero-about .hero-image {
    width: 50%;
    display: flex;
    justify-content: flex-start;
}

/* IMAGE */
.hero-about .hero-image img {
    width: 1000px;
    transform: translateX(-400px);
}

/* TEXT RIGHT */
.hero-about .hero-content {
    width: 50%;
    min-width: 600px;
    padding-left: 120px;
}
/* REMOVE forced height issues */
.hero.hero-about {
    height: auto !important;
    overflow: hidden;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-about {
        flex-direction: column;
        text-align: center;
    }

    .hero-about .hero-content {
        padding-left: 0;
        min-width: unset;
    }

    .hero-about .hero-image {
        justify-content: center;
    }

    .hero-about .hero-image img {
        width: 100%;
        transform: none; /* ✅ reset for mobile */
    }
}
.hero-services {
    height: 60vh;
    justify-content: center;
    text-align: center;
}

/* --- Buttons --- */
.btn-primary, .btn-primary-small, .btn-secondary, .btn-white, .btn-white-arrow {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary, .btn-primary-small {
    background-color: var(--primary-green);
    color: #000; /* change white → black */
}

.btn-primary-small { padding: 10px 20px; }

.btn-secondary {
    background-color: #eee;
    color: #000;
    margin-left: 15px;
    border: 1px solid #ddd;
}

.btn-white {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 10px;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

/* hover effect 🔥 */
.btn-white:hover {
    background: var(--primary-green);
    color: #000;
    box-shadow: 0 0 25px rgba(166,223,57,0.4);
}

.btn-white-arrow {
    background: white;
    color: var(--primary-green);
    padding: 12px 25px;
}

/* ✅ FINAL ARROW REMOVAL */
.btn-white-arrow::after,
.btn-primary::after,
.btn-secondary::after,
.nav-links a::after {
    content: none !important;
    display: none !important;
}

/* --- Content Sections (General) --- */
.features, .our-story, .what-we-do-intro, .detailed-approach, .detailed-services {
    padding: 20px 8%;
}

.section-intro h2 { font-size: 2.5rem; margin-bottom: 15px; text-align: center;}
.section-intro p { color: var(--text-gray); margin-bottom: 50px; text-align: center;}

/* --- Cards & Containers --- */
.card-container, .mission-container, .card-grid {
    display: grid;
    gap: 25px;
}

.card-container, .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card, .mission-card, .approach-item, .service-card, .process-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #222;
}

.card {
    transition: var(--transition);
}

.card:hover {
    border: 1.5px solid var(--primary-green);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 168, 107, 0.25);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.subtitle { color: var(--primary-green); font-size: 0.9rem; margin-bottom: 10px; }

.card-link {
    display: block;
    margin-top: 20px;
    color: var(--primary-green);
    text-decoration: none;
}

/* --- About Page Specific Sections --- */
.story-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.icon-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.green-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.story-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.mission-vision {
    padding: 40px 8%;
}

.mission-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card {
    border: 1px solid #1a2e26;
}

.card-icon-small {
    background: var(--primary-green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.what-we-do-intro {
    text-align: center;
}

.icon-box-center {
    background: var(--primary-green);
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
}

.intro-content {
    max-width: 800px;
    margin: 30px auto 0;
    color: var(--text-gray);
}

/* --- Services Page Specific Additions --- */
.green-bg-section {
    background-color: var(--primary-green);
    color: white;
    padding: 40px 8%;
    text-align: center;
}

.green-bg-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.green-bg-section .intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.9;
}

.service-card {
    border: 1px solid #1a2e26;
    position: relative;
    padding-left: 100px;
}

.service-card.full-width {
    grid-column: span 2;
}

.card-icon-container {
    position: absolute;
    left: 30px;
    top: 40px;
}

.card-icon-inner {
    background: rgba(0, 168, 107, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.card-number {
    position: absolute;
    left: 45px;
    top: 95px;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-card h3 {
    margin-left: -5px;
}

.checkmark-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Badge Styles */
.badge {
    margin-top: 25px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: inline-block;
}

.yellow-badge {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.green-badge {
    background: rgba(0, 168, 107, 0.1);
    color: var(--primary-green);
}

.blue-badge {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.pink-badge {
    background: rgba(255, 105, 180, 0.1);
    color: #ff69b4;
}

.purple-badge {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

/* --- Approach Section --- */
.approach {
    padding: 40px 8% 80px; /* top reduced */
    text-align: center;
}

.step-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.step-box {
    background-color: var(--primary-green);
    padding: 30px;
    border-radius: 15px;
    width: 200px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 168, 107, 0.2);
}

.step-box strong {
    font-size: 1.2rem;
}

.step-box span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.arrow {
    color: var(--primary-green);
    font-size: 1.5rem;
}

/* Process Section Extensions */

.our-process {
    padding-bottom: 80px;
}

.our-process .container {
    text-align: center;
}

.our-process .subtitle {
    margin-bottom: 50px;
}

.card-number-large {
    font-size: 4rem;
    font-weight: bold;
    color: #a6df39; /* green but subtle */
}

.process-card.highlighted-card .card-number-large {
    color: #a6df39;
}

/* Detailed Approach List */
.detailed-approach h2 {
    margin-bottom: 50px;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.approach-item {
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 25px;
    text-align: left;
}

.approach-number {
    background: var(--primary-green);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 168, 107, 0.3);
}

.approach-info h3 {
    margin-bottom: 5px;
}

.approach-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
}
/* --- Footer CTA --- */
.footer-cta {
    background: #ffffff; /* ✅ FIX: black background */
    text-align: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    display: none;
}

/* ✅ FIX TEXT */
.footer-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px; /* 🔥 IMPORTANT */
    position: relative;
    z-index: 2;
}

.footer-cta h2,
.footer-cta p {
    color: #000 !important;
}

.footer-cta p {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* 🔥 BUTTON (outline style) */
.btn-white {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 10px;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.btn-white:hover {
    background: var(--primary-green);
    color: #000;
    box-shadow: 0 0 25px rgba(166,223,57,0.4);
}
/* --- Responsive --- */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   SERVICES PAGE - CARDS
   ========================= */

/* SERVICES GRID (3 top, 2 centered bottom) */
.services-list-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 🔥 force 3 per row */
    gap: 25px;
    margin-top: 5px;
}



/* Each service box */
.service-card-item {
    background: var(--card-bg);
    border: 1px solid #1f1f1f;
    padding: 20px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
}

.service-card-item:hover {
    transform: translateY(-8px);
    border: 1px solid var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 168, 107, 0.2);
}


/* =========================
   CARD HEADER
   ========================= */

.service-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.service-num {
    color: var(--primary-green);
    font-weight: bold;
}

.service-icon {
    font-size: 1.3rem;
}


/* =========================
   CARD TEXT
   ========================= */

.card-subtitle {
    color: var(--primary-green);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.service-card-item p {
    color: var(--text-gray);
    margin-bottom: 12px;
    font-size: 0.95rem;
}


/* =========================
   HERO SECTION
   ========================= */

.services-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 8%;
    min-height: 80vh;
    gap: 30px;
}

.services-image {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
    position: relative;
}

.services-image img {
    width: 950px;
    max-width: none;
    position: relative;
    transform: translateX(-60px);
    filter: drop-shadow(0 50px 120px rgba(166, 223, 57, 0.45));
}

.services-content {
    width: 50%;
    max-width: 600px;
}

.services-content h1 {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.services-content p {
    font-size: 1.2rem;
    max-width: 520px;
}

.services-content .hero-btns {
    margin-top: 30px;
}


/* =========================
   LAYOUT
   ========================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detailed-services {
    padding: 80px 8%;
}


/* =========================
   WHAT WE DO LIST
   ========================= */

.what-we-do h4 {
    margin-bottom: 10px;
}

.checkmark-list {
    list-style: none;
    padding: 0;
}

.checkmark-list li {
    margin-bottom: 6px;
    padding-left: 25px;
    position: relative;
}

.checkmark-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-green);
}


/* =========================
   PROCESS SECTION (4 IN ONE ROW)
   ========================= */

.our-process .card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.our-process .process-card {
    padding: 20px;
}

.our-process .process-card h3 {
    font-size: 1.1rem;
}

.our-process .process-card p {
    font-size: 0.95rem;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
    .our-process .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-hero {
        flex-direction: column;
        text-align: center;
    }

    .services-content,
    .services-image {
        width: 100%;
    }

    .services-image img {
        width: 100%;
        transform: none;
    }
}

@media (max-width: 500px) {
    .our-process .card-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   HERO SECTION
   ========================= */

.services-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 8%;
    min-height: 80vh;
    gap: 30px;
}

.services-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
    position: relative;
}

.services-image img {
    width: 950px;
    max-width: none;
    transform: translateX(-60px);
    filter: drop-shadow(0 50px 120px rgba(166,223,57,0.45));
}

.services-content {
    width: 50%;
    max-width: 600px;
}

.services-content h1 {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.services-content p {
    font-size: 1.2rem;
    max-width: 520px;
}

.services-content .hero-btns {
    margin-top: 30px;
}


/* =========================
   LAYOUT CONTAINER
   ========================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detailed-services {
    padding: 80px 8%;
}


/* What we do */
.what-we-do h4 {
    margin-bottom: 10px;
}

.checkmark-list {
    list-style: none;
    padding: 0;
}

.checkmark-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.checkmark-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-green);
}


/* =========================
   CONTACT PAGE CLEAN DESIGN
   ========================= */

.contact-single {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    margin-bottom: 40px;
}

.contact-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-intro p {
    color: var(--text-gray);
}

/* Contact Info Cards */
.contact-info {
    margin-top: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #1f1f1f;
    text-align: left;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

/* Icon styling */
.icon-box {
    background: rgba(0,168,107,0.1);
    color: var(--primary-green);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}


/* Cards */
.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #1f1f1f;
    text-align: left;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,168,107,0.15);
}

/* Icons */
.icon-box {
    background: rgba(0,168,107,0.1);
    color: var(--primary-green);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

/* ✅ FIX: Black text on green backgrounds */

.green-bg-section,
.footer-cta,
.green-bg {
    color: #000; /* make text black */
}

/* Headings inside green sections */
.green-bg-section h1,
.green-bg-section h2,
.green-bg-section h3,
.footer-cta h2,
.footer-cta p {
    color: #000;
}

/* Buttons inside green sections */
.green-bg-section .btn-white-arrow,
.footer-cta .btn-white-arrow {
    color: #000;
}

/* =========================
   FINAL CLEAN FIX (WORKS 100%)
   ========================= */

/* Only affect green background sections */
.green-bg-section,
.footer-cta,
.green-bg {
    color: #000;
}

/* Text elements */
.green-bg-section h1,
.green-bg-section h2,
.green-bg-section h3,
.green-bg-section h4,
.green-bg-section p,
.footer-cta h1,
.footer-cta h2,
.footer-cta h3,
.footer-cta p {
    color: #000;
}

/* Fix ALL buttons inside green sections */
.green-bg-section .btn-primary,
.green-bg-section .btn-primary-small,
.footer-cta .btn-primary,
.footer-cta .btn-primary-small {
    background: var(--primary-green);
    color: #000 !important;
}

/* White buttons */
.green-bg-section .btn-white-arrow,
.footer-cta .btn-white-arrow {
    background: #fff;
    color: #000 !important;
}

/* Links */
.green-bg-section a,
.footer-cta a {
    color: #000;
}

.step-box {
    background-color: var(--primary-green);
    color: #000; /* ✅ THIS FIXES IT */
}

.approach-number {
    background: var(--primary-green);
    color: #000; /* ✅ THIS fixes the numbers */
}

.btn-white {
    color: var(--primary-green) !important;
}

.services-intro {
    padding: 40px 8% 20px;
    text-align: center; /* 🔥 centers everything */
}

.services-intro .container {
    max-width: 800px;   /* 🔥 keeps text nicely centered */
    margin: 0 auto;
}

/* HEADING */
.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* PARAGRAPH */
.services-intro p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 0px;
    line-height: 1.7;
}

/* animation */
@keyframes catReveal {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 900px) {
    .offer-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .offer-image img {
        width: 300px;
        margin-top: 40px;
    }
}

.simple-cta {
    background: #ffffff;
}

/* =========================
   FINAL CONTACT HERO FIX
   ========================= */

.hero-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: auto;
    padding: 100px 8%;
    gap: 40px;
}

.hero-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 40px 8%;
    gap: 40px;
}

/* IMAGE LEFT */
.hero-contact .hero-image {
    width: 50%;
    display: flex;
    justify-content: flex-start;
}

/* IMAGE FIX */
.hero-contact .hero-image img {
    width: 1000px;
    transform: translateX(-400px); /* ✅ KEY FIX */
}

/* TEXT RIGHT */
.hero-contact .hero-content {
    width: 50%;
    min-width: 600px;
    padding-left: 120px;  /* ✅ spacing fix */
}
/* Hide default cursor */
body {
    cursor: none;
}

/* Clean green dot cursor */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: rgba(166, 223, 57, 0.9);
    border-radius: 50%;

    pointer-events: none;
    z-index: 9999;

    transform: translate(-50%, -50%);

    box-shadow: 0 0 15px rgba(166,223,57,0.6);
}

.floating-social {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 9999;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.social-btn:hover {
    transform: scale(1.1);
}

/* Colors */
.whatsapp { background: #25D366; }
.instagram { background: #E4405F; }
.facebook { background: #1877F2; }
.linkedin { background: #0077B5; }
@media (max-width: 768px) {

    /* 🔥 HEADER */
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 15px 20px;
        gap: 10px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin: 10px 0;
    }

    .logo-img {
        height: 45px;
    }

    /* 🔥 HERO LAYOUT */
    .hero {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
        text-align: left;
    }

    /* 🔥 TEXT */
    .hero-content {
        width: 100%;
        min-width: unset;
    }

    .hero-title {
        font-size: 2.3rem;
        line-height: 1.2;
        white-space: normal;
        text-align: left;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin: 15px 0;
        text-align: left;
    }

    .hero-btns {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    /* 🔥 IMAGE */
    .hero-image {
        width: 100%;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        width: 90%;
        max-width: 420px;
        transform: none;
        margin: 0 auto;
    }

    /* 🔥 GLOBAL FIX */
    img {
        max-width: 100%;
        height: auto;
    }

    section {
        padding: 40px 20px;
    }

    body {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
        text-align: left;
    }

    .hero-content {
        width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
        white-space: normal;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 350px;
        transform: none !important; /* 🔥 FORCE RESET */
    }
}

@media (max-width: 768px) {

    .hero-about {
        flex-direction: column;
        text-align: left;
    }

    .hero-about .hero-content {
        width: 100%;
        padding-left: 0;
        min-width: unset;
    }

    .hero-about .hero-image {
        width: 100%;
        justify-content: center;
    }

    .hero-about .hero-image img {
        width: 100%;
        max-width: 350px;
        transform: none !important; /* 🔥 critical */
    }
}
@media (max-width: 768px) {

    .story-container {
        flex-direction: column;
        gap: 25px;
    }

    .story-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .story-image img {
        width: 100%;
        max-width: 350px;
    }

    .story-text {
        width: 100%;
    }
}