/* CSS Variables */
:root {
    --primary-green: #285e00;
    --light-green: #7cda24;
    --accent-orange: #e09900;
    --dark-blue: #1a2940;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --text-light: rgba(255, 255, 255, 0.65);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-orange), #c55f0d);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--light-green);
    border: 2px solid var(--light-green);
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-green);
    padding: 8px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 24px;
}

.contact-info a {
    color: var(--white);
    font-size: 14px;
}

.contact-info a:hover {
    color: var(--accent-orange);
}

.contact-info i {
    margin-right: 8px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: var(--white);
    font-size: 16px;
}

.social-icons a:hover {
    color: var(--accent-orange);
}

/* Main Navigation */
.main-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.logo img {
    display: block;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 97px;
    display: block;
    margin: 5px 0;
    padding: 0;
}

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

.nav-links a {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    padding: 10px 0;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-green);
}

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

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
}

.nav-cta {
    margin-left: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* =====================================================
   HERO SLIDER SECTION
   ===================================================== */
.hero-slider-section {
    padding-top: 110px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white);
    max-width: 700px;
    padding: 40px;
    padding-left: 100px;
    margin-right: auto;
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    padding-left: 25px;
    border-left: 4px solid var(--light-green);
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 29px;
    max-width: 550px;
    line-height: 1.6;
}

/* Slider Animations */
.animate-fade-down {
    opacity: 0;
    transform: translateY(-30px);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .animate-fade-down {
    animation: fadeDown 0.8s ease forwards;
}

.hero-slide.active .animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.hero-slide.active .delay-1 {
    animation-delay: 0.3s;
}

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

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

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--light-green);
    border-color: var(--light-green);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border: 2px solid var(--white);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: var(--light-green);
    border-color: var(--light-green);
}

/* =====================================================
   QUALITY SERVICE SECTION
   ===================================================== */
.quality-section {
    padding: 80px 0;
    background: var(--white);
}

.quality-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.quality-left {
    display: flex;
    flex-direction: column;
}

.quality-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.quality-right {
    padding-top: 0;
}

.quality-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.quality-right h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
    padding-left: 20px;
    border-left: 4px solid var(--light-green);
}

.quality-right p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.quality-features {
    margin-top: 30px;
    list-style: none;
}

.quality-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.quality-features li i {
    font-size: 24px;
    color: var(--primary-green);
    margin-top: 2px;
    flex-shrink: 0;
}

.quality-features li strong {
    color: var(--text-dark);
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-blue));
    padding: 30px 0;
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-phone a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s ease;
}

.cta-phone a i {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cta-phone a:hover {
    color: var(--light-green);
}

.cta-phone a:hover i {
    background: white;
    color: var(--light-green);
}

/* =====================================================
   SERVICES SHOWCASE SECTION
   ===================================================== */
.services-showcase {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 18px;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-item {
    perspective: 1000px;
    height: 320px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.service-item:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.service-card-front {
    display: flex;
    flex-direction: column;
}

.service-card-back {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-blue));
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;
}

.service-card-back h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.service-card-back p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-back .btn {
    padding: 10px 20px;
    font-size: 12px;
}

.service-icon-card {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border-radius: 15px 15px 0 0;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-icon-card:hover {
    background: linear-gradient(135deg, #edf000, var(--accent-orange));
}

.service-icon-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.service-icon-card:hover img {
    filter: brightness(0);
}

/* Lucide Icons */
.service-icon-card svg {
    width: 60px;
    height: 60px;
    stroke: white;
    stroke-width: 1.5;
    margin-bottom: 15px;
}

.service-icon-card:hover svg {
    stroke: #1a2940;
}

.service-icon-card h3 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.service-icon-card:hover h3 {
    color: var(--text-dark);
    text-shadow: none;
}

.service-card-front .service-photo {
    flex: 1;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
}

.service-card-front .service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-photo {
    flex: 1;
    height: auto;
}

/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */
.why-choose-us {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 41, 64, 0.9);
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

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

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-box h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* =====================================================
   TEAM SECTION
   ===================================================== */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.team-photo {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.team-photo img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-member:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--accent-orange);
}

.team-info h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary-green);
    font-weight: 500;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    margin-bottom: 15px;
}

.quote-icon i {
    font-size: 36px;
    color: var(--light-green);
    opacity: 0.5;
}

.testimonial-content p {
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-info > p {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.stars {
    color: var(--accent-orange);
    font-size: 14px;
}

.stars i {
    margin-right: 2px;
}

/* =====================================================
   FEATURED QUOTE HERO
   ===================================================== */
.featured-quote-hero {
    padding: 160px 0 60px;
    background: var(--white);
    text-align: center;
}

.featured-quote-inner {
    max-width: 800px;
    margin: 0 auto;
}

.featured-quote-icon {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 24px;
    opacity: 0.3;
}

.featured-quote-inner blockquote {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0 0 30px;
}

.featured-quote-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.featured-quote-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(40, 94, 0, 0.15);
}

.featured-quote-author strong {
    display: block;
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
}

.featured-quote-author span {
    display: block;
    color: #888;
    font-size: 14px;
    margin-bottom: 4px;
}

.featured-quote-author .stars {
    color: var(--accent-orange);
    font-size: 13px;
}

.featured-quote-author .stars i {
    margin-right: 2px;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.cta-section::before {
    display: none;
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--primary-green);
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-main {
    background: var(--dark-blue);
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--light-green);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '›';
    margin-right: 10px;
    color: var(--light-green);
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.contact-list li i {
    color: var(--light-green);
    margin-top: 4px;
}

.contact-list a {
    color: var(--text-light);
}

.contact-list a:hover {
    color: var(--light-green);
}

.footer-bottom {
    background: #0f1825;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
}

/* =====================================================
   PAGE HEADER
   ===================================================== */
.page-header {
    padding: 150px 0 80px;
    background: white;
    position: relative;
    text-align: center;
}

.page-header::before {
    display: none;
}

.page-header .container {
    position: relative;
}

.page-header h1 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    color: #285e00;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    color: #3a7a10;
}

/* =====================================================
   CONTACT HERO (Conversion-focused)
   ===================================================== */
.contact-hero {
    padding: 160px 0 40px;
    background: var(--white);
    text-align: center;
}

.contact-hero h1 {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.contact-hero-sub {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.contact-hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-hero-badges span {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.contact-hero-badges i {
    color: var(--primary-green);
    margin-right: 6px;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section {
    padding: 40px 0 80px;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-form-header {
    margin-bottom: 24px;
}

.contact-form-header h2 {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-form-header p {
    color: #666;
    font-size: 15px;
}

.contact-form {
    background: var(--white);
    padding: 35px 40px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(40, 94, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-secondary);
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(40, 94, 0, 0.1);
    background: var(--white);
}

.btn-estimate {
    display: block;
    width: 100%;
    padding: 18px 40px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-estimate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 94, 0, 0.35);
}

.form-reassurance {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 14px;
}

.form-reassurance i {
    margin-right: 5px;
    color: #aaa;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-phone-cta {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.contact-phone-cta p {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.phone-link {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.2s;
}

.phone-link:hover {
    color: var(--light-green);
}

.phone-link i {
    margin-right: 6px;
}

.contact-next-steps {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.contact-next-steps h3 {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-next-steps ol {
    list-style: none;
    counter-reset: steps;
    padding: 0;
}

.contact-next-steps ol li {
    counter-increment: steps;
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.contact-next-steps ol li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details-box {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: #555;
}

.contact-details li:last-child {
    margin-bottom: 0;
}

.contact-details li i {
    color: var(--primary-green);
    font-size: 18px;
    width: 22px;
    margin-top: 3px;
}

.contact-details li strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 3px;
    font-size: 14px;
}

.contact-details li span,
.contact-details li a {
    font-size: 14px;
    color: #666;
}

.contact-details a:hover {
    color: var(--primary-green);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-page-content {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.about-image-large img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text-large h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-text-large p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.values-section h2 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* =====================================================
   PROJECT GALLERY - CATEGORIES VIEW
   ===================================================== */
#galleryContainer {
    padding: 20px 0 40px;
    min-height: 400px;
}

/* Featured Projects Section */
.featured-projects-section {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 2px solid #eef2e8;
}

.featured-projects-header {
    margin-bottom: 30px;
}

.featured-projects-header h2 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.featured-projects-header h2 i {
    color: #d4a017;
    margin-right: 8px;
}

.featured-projects-header p {
    color: #666;
    font-size: 16px;
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.featured-project-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    position: relative;
}

.featured-project-card::before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.4);
}

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

.featured-project-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.featured-project-tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
}

.featured-project-body {
    padding: 18px 20px;
}

.featured-project-body h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

/* Categories Section Header */
.categories-section-header {
    margin-bottom: 30px;
}

.categories-section-header h2 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.categories-section-header p {
    color: #666;
    font-size: 16px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--white);
}

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

.category-card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40, 94, 0, 0.6), rgba(26, 41, 64, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(135deg, rgba(40, 94, 0, 0.75), rgba(26, 41, 64, 0.65));
}

.category-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.category-card-icon i {
    font-size: 24px;
    color: var(--white);
}

.category-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-card-body h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-card-body p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 12px;
}

.category-project-count {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    align-self: flex-start;
}

/* =====================================================
   PROJECT GALLERY - PROJECTS VIEW
   ===================================================== */
.projects-view-header,
.gallery-view-header {
    margin-bottom: 40px;
}

.projects-view-header h2,
.gallery-view-header h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.projects-view-header p,
.gallery-description {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
}

.projects-grid-dynamic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card-dynamic {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--white);
}

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

.project-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.project-card-badge i {
    margin-right: 4px;
}

.project-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card-body h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.project-location {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.project-location i {
    margin-right: 4px;
}

.project-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.project-date {
    color: #888;
    font-size: 14px;
    margin-top: 5px;
}

.project-date i {
    margin-right: 4px;
}

/* =====================================================
   PROJECT GALLERY - PHOTO GRID
   ===================================================== */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.photo-grid-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.photo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-grid-item:hover img {
    transform: scale(1.05);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-grid-item:hover .photo-caption {
    opacity: 1;
}

/* =====================================================
   PROJECT GALLERY - BREADCRUMB
   ===================================================== */
.gallery-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.gallery-breadcrumb a {
    color: var(--primary-green);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.gallery-breadcrumb a:hover {
    color: var(--light-green);
}

.breadcrumb-sep {
    margin: 0 10px;
    color: #ccc;
    font-size: 10px;
}

.breadcrumb-current {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* =====================================================
   PROJECT GALLERY - EMPTY STATE
   ===================================================== */
.gallery-empty {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.gallery-empty i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ddd;
}

.gallery-empty h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.gallery-empty p {
    font-size: 16px;
}

.gallery-error {
    text-align: center;
    padding: 60px 20px;
    color: #c00;
    font-size: 16px;
}

/* =====================================================
   PROJECT GALLERY - SKELETON LOADING
   ===================================================== */
.skeleton {
    background: #eee;
    border-radius: 12px;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-card {
    height: 300px;
}

.skeleton-photo {
    aspect-ratio: 4 / 3;
}

.skeleton-image {
    height: 180px;
    background: #ddd;
    border-radius: 12px 12px 0 0;
}

.skeleton-text {
    height: 16px;
    background: #ddd;
    border-radius: 4px;
    margin: 12px 16px;
    width: 70%;
}

.skeleton-text.short {
    width: 40%;
}

@keyframes skeleton-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* =====================================================
   PROJECT GALLERY - LIGHTBOX
   ===================================================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--light-green);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
    z-index: 10;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--light-green);
    border-color: var(--light-green);
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    max-width: 600px;
    line-height: 1.5;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 8px;
    font-family: var(--font-primary);
    font-weight: 500;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 1200px) {
    .services-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .quality-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quality-left {
        max-width: 450px;
        margin: 0 auto;
    }

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

    .quality-right h2 {
        border-left: none;
        padding-left: 0;
        border-bottom: 4px solid var(--light-green);
        padding-bottom: 15px;
        display: inline-block;
    }

    .quality-features li {
        justify-content: center;
        text-align: left;
    }

    .services-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero-content h1 {
        font-size: 40px;
    }

    .featured-quote-inner blockquote {
        font-size: 20px;
    }

    .featured-quote-hero {
        padding: 130px 0 50px;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-hero-badges {
        flex-direction: column;
        gap: 10px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid-dynamic {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .quality-left {
        max-width: 100%;
    }

    .quality-right h2 {
        font-size: 28px;
    }

    .quality-features li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-slider-section {
        padding-top: 80px;
    }

    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .services-grid-full {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-phone a {
        font-size: 22px;
    }

    .slider-nav {
        bottom: 20px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }

    .categories-grid,
    .projects-grid-dynamic,
    .featured-projects-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .featured-projects-header h2,
    .categories-section-header h2 {
        font-size: 24px;
    }

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

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .projects-view-header h2,
    .gallery-view-header h2 {
        font-size: 28px;
    }
}

