/* ==========================================================================
   1. RESET & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette - Premium Wood & Metal Theme */
    /* Color Palette - Yardzen Inspired (Organic & Premium) */
    --primary-color: #1a3c34;
    /* Deep Forest Green */
    --primary-light: #2c584e;
    --secondary-color: #c9a36f;
    /* Muted Gold/Earth */
    --accent-color: #6b8e23;
    /* Olive Green */
    --text-color: #2b2b2b;
    /* Soft Black */
    --text-light: #666666;
    --bg-color: #fdfcf8;
    /* Warm Off-White */
    --bg-alt: #f1f0eb;
    /* Light Greige */
    --border-color: #e5e5e5;
    --white: #ffffff;
    --black: #000000;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Responsive Font Sizes */
    --h1-fs: clamp(2rem, 5vw, 4rem);
    --h2-fs: clamp(1.8rem, 4vw, 2.5rem);
    --h3-fs: clamp(1.4rem, 3vw, 1.8rem);
    --body-fs: clamp(1rem, 1.2vw, 1.1rem);

    /* Spacing */
    --section-padding: clamp(3rem, 10vw, 6rem) 0;
    --container-width: 95vw;
    --header-height: 80px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 163, 111, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(201, 163, 111, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 163, 111, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 84, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(211, 84, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(211, 84, 0, 0);
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    z-index: 10001;
    transition: width 0.1s ease;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}



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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--body-fs);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    letter-spacing: 0.2px;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 1.2rem;
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   2. UTILITIES & LAYOUT
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.section {
    padding: var(--section-padding);
}

.section-bg {
    background-color: var(--bg-alt);
}

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

.highlight {
    color: var(--secondary-color);
}

.text-gradient {
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: var(--h2-fs);
    margin-bottom: 1.5rem;
    position: relative;
    display: block;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-header.text-center .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    /* Larger, more premium buttons */
    border-radius: 2px;
    /* Sharper, cleaner corners logic Yardzen */
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 60, 52, 0.2);
}



.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    transition: width 0.3s;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.btn-primary:hover::after {
    width: 100%;
}

.btn-secondary:hover {
    background-color: var(--primary-light);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scroll-active {
    height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
    font-size: 1.2rem;
}

.logo-text-wrapper span:first-child {
    font-size: 1rem;
    color: var(--text-light);
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Mobile Nav - Premium & Attractive */
@media screen and (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 5rem 2rem 2rem;
        transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 2000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .nav.show-menu {
        right: 0;
    }

    /* Decorative Circle */
    .nav::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(201, 163, 111, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
        z-index: -1;
        pointer-events: none;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        color: var(--primary-color);
        font-weight: 600;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease;
        display: inline-block;
        width: 100%;
    }

    .nav-link:hover {
        color: var(--secondary-color);
        transform: translateX(10px);
    }

    /* Contact Button Style inside Menu */
    .nav-link.btn-cta {
        margin-top: 1rem;
        background-color: var(--primary-color);
        color: var(--white);
        padding: 1rem 2rem;
        border-radius: 50px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(26, 60, 52, 0.2);
    }

    .nav-link.btn-cta:hover {
        background-color: var(--secondary-color);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(201, 163, 111, 0.3);
    }

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

    /* Staggered Animations */
    .nav.show-menu .nav-link {
        opacity: 1;
        transform: translateX(0);
    }

    .nav.show-menu .nav-item:nth-child(1) .nav-link {
        transition-delay: 0.1s;
    }

    .nav.show-menu .nav-item:nth-child(2) .nav-link {
        transition-delay: 0.2s;
    }

    .nav.show-menu .nav-item:nth-child(3) .nav-link {
        transition-delay: 0.3s;
    }

    .nav.show-menu .nav-item:nth-child(4) .nav-link {
        transition-delay: 0.4s;
    }

    .nav.show-menu .nav-item:nth-child(5) .nav-link {
        transition-delay: 0.5s;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .nav-toggle:hover {
        background-color: rgba(201, 163, 111, 0.1);
        /* Subtle hover bg */
        color: var(--secondary-color);
        transform: rotate(90deg);
    }

    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.03);
        color: var(--primary-color);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .nav-close:hover {
        background-color: var(--secondary-color);
        color: var(--white);
        transform: rotate(90deg);
    }
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background-color: var(--primary-color);
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hero Background with Parallax Feel */
    /* Hero Background - Yardzen Organic Feel */
    background:
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)),
        url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    /* Fixed usually causes issues on mobile, scroll is safer */
    background-color: #1a3c34;
    z-index: 0;
    animation: fadeInRight 1.5s ease-out;
}

/* Floating animated background shapes for visual interest */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    animation: float 6s infinite ease-in-out;
}

.hero::before {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: -50px;
    right: -50px;
}

.hero::after {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: 50px;
    left: -50px;
    animation-delay: 2s;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: scrollDown 2s infinite ease-in-out;
    cursor: pointer;
    z-index: 2;
}

/* Simulate image placeholder if image missing */
.hero-bg:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /* Subtle pattern */
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 50%);
    background-size: 20px 20px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: var(--h1-fs);
    /* Larger, more editorial */
    font-weight: 400;
    /* Lighter weight for elegance */
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.hero-description {
    font-size: var(--body-fs);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/*Features Grid overlap */
.features {
    padding-top: 2rem;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-bottom: 3px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.4s var(--bounce);
}



.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==========================================================================
   5. SECTIONS (General)
   ========================================================================== */


/* ==========================================================================
   6. ABOUT SECTION
   ========================================================================== */
.about {
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 163, 111, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    /* Increased gap for breathing room */
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
    background: transparent;
}

/* Professional Architectural Accent - Refined */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 65%;
    height: 85%;
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    z-index: 0;
    opacity: 0.2;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 20%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(var(--secondary-color) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.2;
    z-index: 0;
}

.about-img-container {
    position: relative;
    width: 100%;
    height: 480px;
    /* Enhanced height for professional look */
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background-color: var(--bg-alt);
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-wrapper:hover .about-img-container {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -35px;
    right: -10px;
    /* Adjusted position */
    background: var(--white);
    color: var(--primary-color);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    border: 1px solid rgba(201, 163, 111, 0.3);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.experience-badge:hover {
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
    border-color: var(--secondary-color);
}

.experience-wrap {
    background: linear-gradient(135deg, var(--secondary-color), #b8860b);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.experience-badge::after {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

.experience-badge .years {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.experience-badge .text {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
    margin-top: 2px;
}



.about-list {
    margin: 2rem 0;
}

.about-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.about-list li i {
    color: var(--accent-color);
}

@media screen and (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-badge {
        right: 20px;
        bottom: 20px;
    }
}

/* ==========================================================================
   7. SERVICES SECTION
   ========================================================================== */
.services {
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

/* Second decoration */
.services::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(201, 163, 111, 0.04) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 1.5rem;
    display: inline-block;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    /* Softer modern edges */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

/* Premium Top Accent Line */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 163, 111, 0.2);
}

.service-card:hover::after {
    width: 100%;
}

.service-card .service-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.6s var(--bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(144, 169, 85, 0.08);
    border-radius: 50%;
    margin-top: 2rem;
    margin-left: 2rem;
    position: relative;
    z-index: 1;
}

.service-card.active .service-icon {
    animation: iconPop 0.8s var(--bounce) forwards;
}

@keyframes iconPop {
    0% {
        transform: scale(0.5) rotate(-45deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    background-color: var(--primary-color);
    color: var(--white);
}

.service-content {
    padding: 0 2rem 2.5rem 2rem;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--secondary-color);
}

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

/* Section stagger animations handle entrance */
.services-grid .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.services-grid .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   8. PORTFOLIO SECTION
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Standard Portfolio Container */
.portfolio-slider,
.testimonials-slider {
    padding: 2rem 0 5rem;
    overflow: hidden;
    position: relative;
}

.portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1rem;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    /* Taller editorial style */
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.portfolio-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

.portfolio-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #95a5a6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Full overlay with subtle dark tint */
    background: rgba(26, 60, 52, 0.85);
    /* Dark Green Overlay */
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 0.4s var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.portfolio-overlay span {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* ==========================================================================
   8. TESTIMONIALS SECTION
   ========================================================================== */
/* Already handled above */

.testimonials-slider .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.client-role {
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   9. CONTACT SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(211, 84, 0, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Deeper shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Decorative top border */
.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    transition: all 0.3s;
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #eee;
    /* Thicker border */
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--bg-alt);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 163, 111, 0.15);
    /* Focus ring */
}

/* Floating Label Effect (Optional, but if we keep static labels, we animate them on focus) */
.form-input:focus+label,
.form-input:not(:placeholder-shown)+label {
    color: var(--primary-color);
}

textarea.form-input {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 6px;
}

@media screen and (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.footer {
    background-color: var(--primary-color);
    color: #bdc3c7;
    padding-top: 4rem;
}

.footer-grid {
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-logo .logo-text-wrapper span:first-child {
    color: rgba(255, 255, 255, 0.6);
}

.footer-logo .logo-text-wrapper {
    color: var(--white);
}

.footer-text {
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
}

.footer-socials a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(201, 163, 111, 0.3);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bar {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
        margin: 0 auto 1.5rem auto;
    }

    .footer-text {
        margin: 0 auto 2rem auto;
    }
}

/* Landscape Card Specifics (Graceful integration) */
.landscape-card {
    border-bottom: 3px solid var(--accent-color);
}

.landscape-card .service-icon {
    background-color: rgba(107, 142, 35, 0.08);
    /* Accent Green */
    color: var(--accent-color);
}

.landscape-card:hover .service-icon {
    background-color: var(--accent-color);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(10deg);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-soft 2.5s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Tap feedback for mobile */
@media (pointer: coarse) {

    .btn:active,
    .nav-link:active {
        transform: scale(0.95) !important;
        transition: transform 0.1s ease;
    }
}

/* Google Map */
.map-container {
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: saturate(0.8);
    /* Muted map colors for design consistency */
}

/* ==========================================================================
   12. LIST STYLING & VIDEO PLACEHOLDER
   ========================================================================== */

/* Service Lists in Cards */
.service-list {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

.service-list li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    /* Green for landscape items */
    font-size: 0.8rem;
}

/* Video Placeholder in About Section */
.about-img-placeholder {
    cursor: pointer;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    transition: all 0.3s ease;
    flex-direction: column;
}

.about-img-placeholder:hover {
    background: #d5d5d5;
    transform: scale(1.02);
}

.about-img-placeholder i {
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.about-img-placeholder:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.about-img-placeholder span {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ==========================================================================
   13. SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    filter: blur(5px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger Children */
.reveal-stagger .service-card:nth-child(1),
.reveal-stagger .portfolio-item:nth-child(1),
.reveal-stagger .feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger .service-card:nth-child(2),
.reveal-stagger .portfolio-item:nth-child(2),
.reveal-stagger .feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger .service-card:nth-child(3),
.reveal-stagger .portfolio-item:nth-child(3),
.reveal-stagger .feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger .service-card:nth-child(4),
.reveal-stagger .portfolio-item:nth-child(4),
.reveal-stagger .feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* ==========================================================================
   14. PRELOADER & CAROUSEL
   ========================================================================== */

/* Preloader Overhaul */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    /* Dark Brand Theme */
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 90%;
    max-width: 400px;
}

.loader-logo-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.loader-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    z-index: 2;
    animation: loaderPulse 2s infinite ease-in-out;
}

.loader-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s infinite linear;
    z-index: 1;
}

.loader-branding {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.loader-name {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease forwards;
}

.loader-highlight {
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

.loader-progress {
    width: 150px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.loader-bar {
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transform: translateX(-100%);
    animation: loaderBar 2s infinite ease-in-out;
}

/* Animations */
@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes loaderBar {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Mobile Adjustments */
@media screen and (max-width: 600px) {
    .loader-logo-wrapper {
        width: 80px;
        height: 80px;
    }

    .loader-logo-img {
        width: 55px;
        height: 55px;
    }

    .loader-name {
        font-size: 1.5rem;
    }

    .loader-highlight {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
}

/* Swiper Customization */
.swiper-pagination {
    bottom: 1.5rem !important;
}

.swiper-slide {
    height: auto;
    opacity: 0.6;
    transition: all 0.5s var(--transition);
    transform: scale(0.9);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.portfolio-item {
    height: 450px;
    /* Taller slider items */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary-color) !important;
    opacity: 1;
    width: 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    background-color: rgba(26, 60, 52, 0.8);
    /* Solid primary */
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: var(--transition);
}


.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media screen and (max-width: 900px) {

    /* Stack footer columns nicely */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-map {
        margin: 0 auto;
        /* Center map */
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {

    /* Adjust Hero for mobile */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    /* Adjust container widths */
    :root {
        --container-width: 92%;
    }

    /* Swiper Navigation adjust */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
        /* Hide arrows on mobile, swipe is enough */
    }
}

/* ==========================================================================
   MOBILE REFINEMENTS (Small Devices)
   ========================================================================== */
@media screen and (max-width: 600px) {

    /* Prevent horizontal scroll */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    :root {
        --section-padding: 3rem 0;
        --header-height: 70px;
        --container-width: 90%;
    }

    /* Typography Adjustments */
    .category-title {
        font-size: 1.4rem;
        margin-top: 3rem !important;
        margin-bottom: 1.5rem;
    }

    .category-title::before {
        height: 20px;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        border-radius: 8px;
    }

    .service-image {
        height: 180px;
    }

    .service-card .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-left: 1.5rem;
    }

    .service-content {
        padding: 0 1.5rem 2rem 1.5rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    h1,
    h2,
    h3 {
        line-height: 1.3;
    }

    /* Header & Logo Fixes for Mobile overflow */
    .header-container {
        padding: 0 1rem;
        /* Ensure padding doesn't push width */
        width: 100%;
        box-sizing: border-box;
    }

    .logo-img {
        height: 40px;
        /* Smaller logo */
    }

    .logo-text-wrapper {
        font-size: 1rem;
        /* Smaller text */
    }

    .logo-text-wrapper span:first-child {
        font-size: 0.8rem;
        /* Smaller brand name */
    }

    .nav-toggle {
        font-size: 1.2rem;
        /* Adjust hamburger size if needed */
    }

    /* Hero Section - Fix Big/Messy */
    .hero {
        min-height: auto;
        height: auto;
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 4rem;
        text-align: center;
        display: block;
    }

    .hero-bg {
        position: absolute;
        height: 100%;
        width: 100%;
    }

    .hero-content {
        padding: 0;
        max-width: 100%;
        position: relative;
        z-index: 10;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-bottom: 2rem;
        /* Space for scroll arrow */
    }

    .btn {
        width: 100%;
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.8rem;
        /* Space between icon and text */
        height: auto;
    }

    /* Fix "Vertical Rectangle" Video/Image & Enable Badge Overlap */
    .about-image-wrapper {
        position: relative !important;
        height: auto;
        width: 100%;
        margin: 0 auto 3.5rem;
        overflow: visible !important;
        display: block;
        padding: 15px;
        /* Better breathing room */
        max-width: 500px;
        /* Prevent overly large video on wide mobiles */
    }

    .about-image-wrapper::before {
        width: 120px;
        height: 120px;
        top: -5px;
        left: -5px;
        border: 2px solid var(--secondary-color);
        opacity: 0.2;
        border-radius: 15px;
    }

    .about-image-wrapper::after {
        width: 50px;
        height: 50px;
        bottom: -5px;
        right: 10px;
        display: block !important;
    }

    .about-video-container {
        margin-bottom: 0;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    /* Stats/Experience Badge - Proper overlap for Mobile */
    .experience-badge {
        position: absolute !important;
        bottom: -20px !important;
        right: 5px !important;
        left: auto !important;
        margin: 0 !important;
        width: 110px !important;
        height: 110px !important;
        background: var(--white) !important;
        padding: 5px !important;
        border-radius: 50% !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
        z-index: 20 !important;
        display: flex !important;
        border: none !important;
    }

    .experience-wrap {
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(135deg, var(--secondary-color), #b8860b) !important;
        border-radius: 50% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }



    .experience-badge::after {
        display: none;
        /* Simplify for mobile */
    }

    .experience-badge .years {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        letter-spacing: 1px !important;
        color: var(--white) !important;
        margin-bottom: 2px !important;
    }

    .experience-badge .text {
        font-size: 0.6rem !important;
        color: var(--white) !important;
        text-transform: uppercase !important;
        opacity: 0.9 !important;
        line-height: 1 !important;
    }

    .testimonials-slider {
        padding: 1rem 0 3rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    /* Contact Form - Mobile Optimization */
    .contact-form {
        padding: 1.5rem;
    }

    .form-input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .contact-form .btn {
        padding: 1rem;
        font-size: 0.9rem;
    }

    /* Portfolio/Carousel Mobile Fix */
    .portfolio-slider,
    .testimonials-slider {
        padding: 1rem 0 4rem;
        overflow: hidden;
    }

    .portfolio-item {
        height: 300px;
    }

    .swiper-pagination {
        bottom: 0.5rem !important;
    }
}

/* ==========================================================================
   DESKTOP PREMIUM UPGRADE — Super Cool Design (All Screens)
   Mirrors & enhances the premium mobile look across desktop
   ========================================================================== */

/* ---------------------------------------------------------
   HERO — Desktop Bottom-Aligned Editorial Layout
   --------------------------------------------------------- */
.hero {
    /* Vertically centered — safe at all viewport heights */
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
    min-height: 100vh;
    height: auto;
    overflow: hidden;
}

.hero-bg {
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.38) 55%,
            rgba(0, 0, 0, 0.12) 100%),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    background-color: #1a3c34;
}

.hero-content {
    max-width: 720px;
    width: 100%;
    padding-bottom: 0;
    /* Ensure content never goes above header */
    overflow: visible;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--secondary-color);
    font-size: 0.85rem;
    letter-spacing: 3px;
    opacity: 1;
    margin-bottom: 1rem;
}

.hero-subtitle::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--secondary-color);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-description {
    max-width: 540px;
    line-height: 1.75;
    opacity: 0.88;
    margin-bottom: 2.5rem;
}

/* ---------------------------------------------------------
   HERO BUTTONS — Pill Style
   --------------------------------------------------------- */
.hero-buttons .btn {
    border-radius: 50px;
    padding: 1rem 2.2rem;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #c9a36f, #b8860b);
    border: none;
    box-shadow: 0 10px 30px rgba(201, 163, 111, 0.4);
    border-radius: 50px;
    color: var(--white);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #d4b07a, #c9964a);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(201, 163, 111, 0.5);
}

.hero-buttons .btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
    transform: translateY(-4px);
}

/* ---------------------------------------------------------
   HERO STATS STRIP — Desktop
   --------------------------------------------------------- */
.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 380px;
}

.hero-stat {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.hero-stat:first-child {
    padding-left: 0;
    text-align: left;
}

.hero-stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.hero-stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
}

/* ---------------------------------------------------------
   GENERAL BUTTON UPGRADE — Pill style site-wide
   --------------------------------------------------------- */
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 25px rgba(26, 60, 52, 0.2);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 60, 52, 0.15);
}

/* ---------------------------------------------------------
   SCROLL DOWN INDICATOR UPGRADE
   --------------------------------------------------------- */
.scroll-down {
    bottom: 28px;
    font-size: 1.5rem;
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.scroll-down:hover {
    opacity: 1;
}

/* ---------------------------------------------------------
   SECTION TITLE UPGRADE — Decorative accent
   --------------------------------------------------------- */
.section-header.text-center .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.78rem;
    letter-spacing: 3px;
}

.section-header.text-center .section-subtitle::before,
.section-header.text-center .section-subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--secondary-color);
    opacity: 0.6;
}

/* ---------------------------------------------------------
   ABOUT SECTION — Desktop Upgrades
   --------------------------------------------------------- */
.about-video-container {
    border-radius: 20px;
}

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

/* ---------------------------------------------------------
   SERVICE CARDS — Desktop Upgrades
   --------------------------------------------------------- */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Landscape services get a slightly different accent */
.landscape-card::after {
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
}

/* Card without image (Organic Manure) */
.service-card:not(:has(.service-image)) {
    min-height: 180px;
    padding: 2.5rem;
    justify-content: flex-start;
}

.service-card:not(:has(.service-image)) .service-icon {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 1.2rem;
}

/* ---------------------------------------------------------
   CONTACT SECTION — Quick Chips (Desktop)
   --------------------------------------------------------- */
.contact-quick-chips {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.3rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(26, 60, 52, 0.2);
}

.contact-chip i {
    font-size: 0.88rem;
}

.contact-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(26, 60, 52, 0.3);
    color: var(--white);
}

.contact-chip.whatsapp {
    background: #25d366;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}

.contact-chip.whatsapp:hover {
    background: #1fbd59;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.contact-chip.phone {
    background: linear-gradient(135deg, var(--secondary-color), #b8860b);
    box-shadow: 0 4px 18px rgba(201, 163, 111, 0.35);
}

.contact-chip.phone:hover {
    box-shadow: 0 10px 28px rgba(201, 163, 111, 0.5);
}

/* ---------------------------------------------------------
   CONTACT ITEMS — Desktop Upgrade
   --------------------------------------------------------- */
.contact-item {
    padding: 1.2rem 1.5rem;
    background: rgba(26, 60, 52, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(26, 60, 52, 0.06);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(26, 60, 52, 0.06);
    border-color: rgba(201, 163, 111, 0.25);
    transform: translateX(6px);
}

.contact-item h3 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-item p,
.contact-item p a {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-item p a:hover {
    color: var(--secondary-color);
}

.contact-icon {
    background: rgba(26, 60, 52, 0.08);
    color: var(--primary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--primary-color);
    color: var(--white);
}

/* ---------------------------------------------------------
   CONTACT FORM — Desktop Upgrade
   --------------------------------------------------------- */
.contact-form {
    border-radius: 20px;
}

.contact-form .btn-primary {
    border-radius: 50px;
    padding: 1.1rem 2rem;
    font-size: 0.88rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 8px 25px rgba(26, 60, 52, 0.3);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(26, 60, 52, 0.4);
}

/* ---------------------------------------------------------
   SOCIAL LINKS — Desktop (Contact area)
   --------------------------------------------------------- */
.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(26, 60, 52, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(26, 60, 52, 0.25);
}

/* ---------------------------------------------------------
   FOOTER — Premium Desktop Tweaks
   --------------------------------------------------------- */
.footer-socials a {
    border-radius: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a::before {
    content: '→';
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 4px;
}

/* ---------------------------------------------------------
   SWIPER / PORTFOLIO — Desktop Upgrade
   --------------------------------------------------------- */
.portfolio-item {
    border-radius: 16px;
}

.portfolio-item img {
    border-radius: 16px;
}

.portfolio-overlay {
    border-radius: 16px;
}

.portfolio-overlay span {
    background: rgba(201, 163, 111, 0.18);
    border: 1px solid rgba(201, 163, 111, 0.4);
    padding: 3px 14px;
    border-radius: 20px;
    margin-top: 6px;
    display: inline-block;
}

/* ---------------------------------------------------------
   TESTIMONIAL CARDS — Desktop Upgrade
   --------------------------------------------------------- */
.testimonial-card {
    border-radius: 16px;
    border-color: rgba(201, 163, 111, 0.12);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
}

/* ---------------------------------------------------------
   EXPERIENCE BADGE — Desktop Upgrade
   --------------------------------------------------------- */
.experience-badge {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ---------------------------------------------------------
   NAV CTA BUTTON — Desktop
   --------------------------------------------------------- */
.nav-link.btn-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-size: 0.82rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(26, 60, 52, 0.25);
    transition: all 0.3s ease !important;
}

.nav-link.btn-cta:hover {
    background: linear-gradient(135deg, var(--secondary-color), #b8860b);
    box-shadow: 0 8px 25px rgba(201, 163, 111, 0.35);
    transform: translateY(-2px);
}

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

/* ---------------------------------------------------------
   HEADER LOGO UPGRADE
   --------------------------------------------------------- */
.logo-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 163, 111, 0.25);
    transition: border-color 0.3s ease;
}

.logo:hover .logo-img {
    border-color: var(--secondary-color);
}

/* ---------------------------------------------------------
   SCROLL PROGRESS UPGRADE — Shine effect
   --------------------------------------------------------- */
.scroll-progress {
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% auto;
    animation: shine-bar 3s linear infinite;
    height: 3px;
}

@keyframes shine-bar {
    to {
        background-position: 200% center;
    }
}

/* ---------------------------------------------------------
   CATEGORY TITLE UPGRADE
   --------------------------------------------------------- */
.category-title {
    display: flex;
    align-items: center;
    padding-left: 0;
    gap: 0;
}

/* ---------------------------------------------------------
   ABOUT LIST UPGRADE
   --------------------------------------------------------- */
.about-list li i {
    width: 28px;
    height: 28px;
    background: rgba(107, 142, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    color: var(--accent-color);
}

/* ---------------------------------------------------------
   PRELOADER UPGRADE — Progress bar glows
   --------------------------------------------------------- */
.loader-bar {
    background: linear-gradient(to right, var(--secondary-color), #ffd700, var(--secondary-color));
    background-size: 200% auto;
    animation: loaderBar 1.8s infinite ease-in-out, shine-bar 2s linear infinite;
}

/* ---------------------------------------------------------
   @keyframes rotate — for badge ring
   --------------------------------------------------------- */
@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
    position: fixed;
    bottom: 90px;
    /* sits above mobile bottom nav (64px) */
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.6rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-success {
    background: linear-gradient(135deg, #1a3c34, #2c584e);
    color: var(--white);
    border: 1px solid rgba(201, 163, 111, 0.35);
}

.toast-error {
    background: linear-gradient(135deg, #8b1a1a, #c0392b);
    color: var(--white);
}

/* Desktop: lower bottom value is fine (no bottom nav) */
@media screen and (min-width: 769px) {
    .toast-notification {
        bottom: 2.5rem;
        font-size: 1rem;
    }
}

/* ==========================================================================
   FORM BUTTON — LOADING STATE
   ========================================================================== */
.contact-form button[type="submit"]:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fa-spin {
    animation: fa-spin 0.8s linear infinite;
}