/* style.css - COMBINED MASTER VERSION (v5.0) - Performance & Accessibility Optimized */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --brand-green: #7cba43;
    --brand-dark: #1a1a1a;
    --brand-gray: #f4f4f4;
    --text-light: #666;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--brand-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
.btn,
.nav-links a,
.stat-number,
.marquee-content,
.step-num,
.price-tag,
.work-title {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Accessibility: Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--brand-green);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-main:focus {
    top: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Accessibility: Focus states for keyboard navigation */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--brand-green);
    outline-offset: 2px;
}

/* Loading optimization - use will-change sparingly */
.btn-main,
.btn-nav,
.nav-links a,
.work-item {
    will-change: transform;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 18px;
    color: var(--brand-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--brand-green);
    transition: var(--transition);
}

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

.btn-nav {
    padding: 10px 25px;
    background-color: var(--brand-green);
    color: #fff !important;
    border-radius: 4px;
    border: 2px solid var(--brand-green);
}

.btn-nav:hover {
    background-color: #fff;
    color: var(--brand-green) !important;
    border: 2px solid var(--brand-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 186, 67, 0.4);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--brand-dark);
}

.menu-toggle i {
    font-size: 24px;
    color: var(--brand-dark);
    transition: var(--transition);
}

/* --- HERO SECTIONS --- */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-small {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero p,
.hero-small p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--brand-green);
    font-weight: bold;
    margin-bottom: 10px;
}

.hero h1,
.hero-small h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 span,
.hero-small h1 span {
    color: var(--brand-green);
}

.hero-desc {
    font-size: 1.2rem !important;
    max-width: 700px !important;
    margin-bottom: 120px !important;
    color: #ddd !important;
    font-weight: normal !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.btn-main {
    padding: 15px 45px;
    background: var(--brand-green);
    color: #fff;
    font-size: 1.4rem;
    border-radius: 4px;
    display: inline-block;
    border: 2px solid var(--brand-green);
    cursor: pointer;
}

.btn-main:hover {
    background: #fff;
    color: var(--brand-green);
    border: 2px solid var(--brand-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn-secondary {
    padding: 15px 45px;
    background: transparent;
    color: #fff;
    font-size: 1.4rem;
    border-radius: 4px;
    display: inline-flex;
    cursor: pointer;
    border: 2px solid #fff;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--brand-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* --- MARQUEE EFFECT --- */
.marquee-wrapper {
    background: var(--brand-green);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
}

.marquee-content span {
    margin: 0 40px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- SECTIONS --- */
.section {
    padding: 100px 8%;
    position: relative;
}

.bg-light {
    background-color: var(--brand-gray);
}

.bg-dark {
    background-color: var(--brand-dark);
    color: #fff;
}

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

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--brand-green);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1;
    color: inherit;
}

.section-desc {
    max-width: 700px;
    margin: 20px auto 0;
    color: inherit;
    opacity: 0.8;
    font-size: 1.1rem;
}

/* --- GRIDS & CARDS --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border-bottom: 4px solid transparent;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--brand-green);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
    font-size: 45px;
    color: var(--brand-green);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card ul {
    margin-top: 15px;
    list-style: disc;
    padding-left: 20px;
    color: #666;
}

.service-card ul li {
    margin-bottom: 5px;
}

/* --- PROCESS STEPS --- */
.step-card {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-num {
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* --- COUNTERS --- */
.counter-section {
    padding: 80px 10%;
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url('https://www.transparenttextures.com/patterns/cubes.png'), var(--brand-dark);
    color: #fff;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    padding: 20px;
}

.stat-item i {
    font-size: 40px;
    color: var(--brand-green);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 4.5rem;
    color: var(--brand-green);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-top: 10px;
    display: block;
    opacity: 0.9;
    text-transform: uppercase;
}

/* --- WORK GRID --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.work-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(20px);
}

.work-item:hover img {
    transform: scale(1.1);
}

.work-item:hover .work-overlay {
    opacity: 1;
    transform: translateY(0);
}

.work-cat {
    color: var(--brand-green);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.work-title {
    color: #fff;
    font-size: 2rem;
    line-height: 1;
}

/* --- PORTFOLIO FILTER BUTTONS --- */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    padding: 12px 30px;
    background: #fff;
    color: var(--brand-dark);
    border: 2px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-transform: capitalize;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--brand-green);
    color: #fff;
    border-color: var(--brand-green);
    transform: translateY(-2px);
}

/* Hidden items in portfolio */
.work-item.hidden {
    display: none;
}

/* Also hide the anchor wrapper so grid children are removed (prevents empty gaps) */
.work-item-link.hidden {
    display: none;
}

/* Smooth fade in for visible items */
.work-item {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- PROCESS CARDS --- */
.process-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--brand-green);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-icon {
    font-size: 3rem;
    color: var(--brand-green);
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brand-dark);
}

.process-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 4px solid var(--brand-green);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    color: var(--brand-green);
}

.stars i {
    font-size: 0.9rem;
}

.testimonial-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--brand-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* --- CLIENT LOGOS --- */
.client-section {
    padding: 60px 8%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: calc(180px * 36);
    animation: scroll 50s linear infinite;
    gap: 0;
}

.client-logo {
    width: 180px;
    height: 100px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-logo img {
    max-height: 65px;
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 14));
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

/* --- PRICING CARDS (Services) --- */
.price-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.price-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-green);
}

.price-card.featured {
    border: 2px solid var(--brand-green);
    position: relative;
}

.price-tag {
    font-size: 3rem;
    color: var(--brand-green);
    font-weight: bold;
    margin: 20px 0;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.price-card ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid #f4f4f4;
    padding-bottom: 10px;
    color: #666;
}

/* --- CONTACT FORM (Contact) --- */
.contact-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brand-dark);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: #fff;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237cba43' d='M1.41 0L6 4.58 10.59 0 12 1.42l-6 6-6-6z'/%3E%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #bbb;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(124, 186, 67, 0.1);
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237cba43' d='M1.41 0L6 4.58 10.59 0 12 1.42l-6 6-6-6z'/%3E%3E%3C/svg%3E");
}

.form-group textarea {
    height: 150px;
    resize: vertical;
    min-height: 120px;
    max-height: 300px;
}

.btn-submit {
    width: 100%;
}

/* --- ENHANCED CONTACT FORM WRAPPER --- */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-green);
}

/* --- CONTACT INFO CARDS --- */
.contact-info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: var(--transition);
    border-left: 4px solid var(--brand-green);
}

.contact-info-card:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

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

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--brand-dark);
}

.contact-details p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--brand-green);
    font-weight: 600;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* --- FAQ SECTION --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: #f9f9f9;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.faq-item.active .faq-question {
    background: var(--brand-green);
    color: #fff;
}

.faq-question h4 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    color: inherit;
}

.faq-question i {
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--brand-green);
}

.faq-item.active .faq-question i {
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 25px;
    background: #fff;
    display: none;
    border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* --- VISION/MISSION (About) --- */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.vm-content h3 {
    font-size: 2.5rem;
    color: var(--brand-green);
    margin-bottom: 15px;
}

.vm-img img {
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--brand-green);
}

/* --- FOOTER --- */
footer {
    background: #111;
    color: #888;
    padding: 80px 5% 20px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

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

.footer-col a:hover {
    color: var(--brand-green);
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--brand-green);
    transform: rotate(360deg);
}

.contact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-row i {
    color: var(--brand-green);
    margin-top: 5px;
}

.copyright {
    text-align: center;
    color: #555;
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 0.9rem;
}

/* --- PRICING CARDS --- */
.pricing-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--brand-green);
    box-shadow: 0 10px 40px rgba(124, 186, 67, 0.15);
    transform: translateY(-5px);
}

.pricing-featured {
    border: 2px solid var(--brand-green);
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(124, 186, 67, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-green);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 15px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--brand-dark);
}

.pricing-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pricing-amount {
    margin: 30px 0;
    font-family: 'Bebas Neue';
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-size: 2.8rem;
    color: var(--brand-green);
}

.price {
    font-size: 2.8rem;
    color: var(--brand-green);
    display: inline;
}

.pricing-plus {
    font-size: 1.5rem;
    color: #666;
    margin-left: 5px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 30px;
    text-align: center;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* --- FEATURE CARDS --- */
.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--brand-green);
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--brand-green);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--brand-dark);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- PROJECT DETAIL PAGE --- */
.project-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 8%;
    color: #fff;
    position: relative;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 30px;
    transition: var(--transition);
    padding: 8px 0;
}

.back-link:hover {
    transform: translateX(-5px);
    color: var(--brand-green);
}

.project-hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.project-category {
    font-size: 1.3rem;
    color: var(--brand-green);
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Detail Info Grid */
.detail-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 1.2rem;
    color: var(--brand-dark);
    font-weight: 600;
}

/* Result Cards */
.result-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 4px solid var(--brand-green);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.result-icon {
    font-size: 3.5rem;
    color: var(--brand-green);
    margin-bottom: 20px;
}

.result-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--brand-dark);
}

.result-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

/* Work Item Link */
.work-item-link {
    text-decoration: none;
    color: inherit;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-small h1 {
        font-size: 3rem;
    }

    .section {
        padding: 80px 5%;
    }

    .grid-2,
    .grid-3,
    .footer-grid,
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .vm-img {
        order: -1;
        margin-bottom: 30px;
    }

    .vm-img {
        order: -1;
        margin-bottom: 30px;
    }
}

/* Legal Pages Styling - All Screen Sizes */
.legal-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.legal-section {
    margin-bottom: 50px;
    padding: 0;
    border: none;
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #333;
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    padding-top: 30px;
    font-weight: 600;
}

.legal-section:first-child h2 {
    padding-top: 0;
}

.legal-section h3 {
    color: #555;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

.legal-section p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
    font-size: 1.05rem;
}

.contact-info {
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-top: 20px;
    border: none;
}

.contact-info p {
    margin: 12px 0;
    font-size: 1.05rem;
    color: #666;
}

.contact-info a {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-info a:hover {
    text-decoration: underline;
    color: var(--brand-dark);
}

/* Mobile - Extra small screens */
@media (max-width: 600px) {
    .vm-grid,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .legal-content {
        padding: 0 20px;
    }

    .legal-section {
        padding: 25px;
    }

    .hero h1,
    .hero-small h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 10px;
    }

    .btn-main,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
    }

    .section {
        padding: 60px 5%;
    }

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

    .floating-chatbot {
        bottom: 20px !important;
        right: 15px !important;
    }

    .chatbot-button {
        width: 50px !important;
        height: 50px !important;
    }

    .chatbot-button i {
        font-size: 1.5rem !important;
    }

    .chatbot-popup {
        width: 300px !important;
        height: 400px !important;
        right: 15px !important;
        bottom: 70px !important;
    }

    .chatbot-header {
        padding: 12px !important;
        font-size: 0.9rem !important;
    }

    .chatbot-header h3 {
        font-size: 0.9rem !important;
    }

    .chatbot-close {
        width: 24px !important;
        height: 24px !important;
        font-size: 1rem !important;
    }
}

/* --- FLOATING CHATBOT WIDGET --- */
.floating-chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Roboto', sans-serif;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-green), #6ba436);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(124, 186, 67, 0.4);
    transition: all 0.3s ease;
    color: white;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(124, 186, 67, 0.6);
}

.chatbot-button i {
    font-size: 1.8rem;
    pointer-events: none;
}

.chatbot-button.active {
    display: none;
}

.chatbot-popup {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chatbot-popup.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, var(--brand-green), #6ba436);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.chatbot-header h3 {
    font-size: 1.1rem;
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.chatbot-header p {
    font-size: 0.85rem;
    margin: 5px 0 0 0;
    opacity: 0.9;
}

.chatbot-close {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f9f9f9;
}

.chatbot-message {
    margin-bottom: 15px;
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-message.bot {
    justify-content: flex-start;
}

.chatbot-message.user {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 70%;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.message-bubble.bot {
    background: white;
    color: var(--brand-dark);
    border: 1px solid #e0e0e0;
}

.message-bubble.user {
    background: var(--brand-green);
    color: white;
}

.chatbot-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
}

.chatbot-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 12px 15px;
    font-size: 0.95rem;
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.chatbot-input:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(124, 186, 67, 0.1);
}

.chatbot-send {
    width: 40px;
    height: 40px;
    background: var(--brand-green);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.chatbot-send:hover {
    background: #6ba436;
    transform: scale(1.05);
}

.chatbot-send i {
    font-size: 1rem;
}

/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#cookie-consent-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    color: #cccccc;
}

#cookie-consent-banner a {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 500;
}

#cookie-consent-banner a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--brand-green);
    color: white;
}

.cookie-btn-accept:hover {
    background: #6ba436;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 186, 67, 0.3);
}

.cookie-btn-reject {
    background: transparent;
    color: #cccccc;
    border: 1px solid #666666;
}

.cookie-btn-reject:hover {
    background: rgba(255,255,255,0.1);
    border-color: #aaa;
}

@media (max-width: 600px) {
    #cookie-consent-banner {
        padding: 15px;
    }

    #cookie-consent-banner p {
        font-size: 0.9rem;
    }

    .cookie-buttons {
        width: 100%;
        gap: 10px;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

