/* Reset & base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --primary-gold: #b9995a;
    --primary-green: #34633d;
    --dark-green: #2a4f31;
    --light-gold: #d4b876;
    --white: #fff;
    --gray-light: #f4f4f4;
    --gray-medium: #666;
    --gray-dark: #333;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background: #fff
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem
}

h1,
h2,
h3 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    z-index: 1000
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none
}

.logo-accent {
    color: var(--primary-gold)
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center
}

.nav-link {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 500;
    padding: .5rem 0;
    position: relative
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width .25s
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold)
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: .25rem
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 4px 0;
    transition: all .3s
}

/* ============ HERO ============ */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 150px 2rem 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

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

.hero h1 {
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--light-gold);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

HERO .hero {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 70px
}

.hero-content {
    max-width: 800px;
    margin: 0 auto
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem
}

.hero-subtitle {
    color: var(--light-gold);
    margin-bottom: 1.25rem
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

/* Buttons */
.btn {
    display: inline-block;
    padding: .75rem 1.25rem;
    background: var(--primary-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-gold);
    cursor: pointer
}

.btn:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-2px)
}

.btn.btn-secondary {
    background: var(--primary-green);
    border-color: var(--primary-green)
}

.btn-secondary:hover {
    color: var(--primary-green);
    box-shadow: 0 5px 15px rgba(52, 99, 61, .2)
}

/* ============ STATS ============ */
.stats {
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ============ INTRODUCTION ============ */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ============ PROJECTS ============ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.project-tag {
    background-color: var(--gray-light);
    color: var(--gray-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-gold);
}

.service-card:hover {
    border-left-color: var(--primary-green);
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--gray-medium);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* ============ FEATURES ============ */
.why-choose {
    background: linear-gradient(to bottom, var(--gray-light), var(--white));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-gold);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-top-color: var(--primary-green);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
}

/* Stats
.stats {
    background: var(--primary-gold);
    color: var(--white);
    padding: 3rem 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: center
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: .25rem
}

.stat-label {
    opacity: .95
} */

/* Sections */
.section {
    padding: 3.5rem 0
}

.section-alt {
    background: var(--gray-light)
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--gray-medium)
}

/* .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem
}

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: transform .25s, box-shadow .25s;
    cursor: pointer
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12)
}

.project-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff
}

.project-content {
    padding: 1rem 1.15rem
}

.project-meta {
    display: flex;
    gap: .5rem;
    margin-top: .75rem;
    flex-wrap: wrap
}

.project-tag {
    background: var(--gray-light);
    color: var(--gray-dark);
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .85rem
} */

/* Features & services
.features-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1rem
}

.feature-card,
.service-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    transition: transform .2s;
    border-top: 4px solid var(--primary-gold)
}

.feature-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--primary-green)
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: #fff;
    font-size: 1.5rem
} */

/* Contact */
.contact {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white)
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, .06);
    padding: 1rem;
    border-radius: 10px
}

.contact-icon {
    font-size: 1.3rem;
    color: var(--primary-gold);
    min-width: 28px
}

.contact-details h3 {
    color: var(--white);
    margin-bottom: .25rem
}

.contact-details a {
    color: rgba(255, 255, 255, .95);
    text-decoration: none
}

/* Footer */
.footer {
    background: var(--gray-dark);
    color: #fff;
    padding: 1rem 0;
    text-align: center
}

/* Responsive */
@media(max-width:768px) {
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        transition: left .3s;
        gap: 0;
        z-index: 999
    }

    .nav-menu.active {
        left: 0
    }

    .nav-menu li {
        border-bottom: 1px solid var(--gray-light);
        width: 100%
    }

    .nav-link {
        display: block;
        padding: 1rem 0
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px)
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px)
    }

    .hero {
        padding: 110px 0 60px
    }

    .hero-buttons {
        flex-direction: column
    }
}
.logo-img {
  height: 56px;
  width: auto;
}

.logo {
  display: flex;
  align-items: center;
}
