/* Topgreensolutions Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d8659;
    --dark-green: #1a5c3a;
    --light-green: #4aad7a;
    --accent-green: #6bc896;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(45, 134, 89, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px; /* Minimum readable font size */
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 16px; /* Minimum readable font size */
}

a {
    text-decoration: none;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-green);
}

/* Header and Navigation - Modern Design */
header {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo:hover {
    opacity: 0.8;
}

.logo:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Fallback text logo if image doesn't load */
.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: var(--dark-green);
}

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

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links > li > a:hover {
    color: var(--primary-green);
    background-color: rgba(45, 134, 89, 0.05);
}

.nav-links > li > a.active {
    color: var(--primary-green);
    background-color: rgba(45, 134, 89, 0.1);
    font-weight: 600;
}

.nav-links > li > a.active::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

/* Dropdown Menu - Clean Modern Design */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown > a::after {
    content: '▼';
    font-size: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 0.25rem;
    opacity: 0.6;
}

.dropdown:hover > a,
.dropdown.active > a {
    color: var(--primary-green);
    background-color: rgba(45, 134, 89, 0.1);
}

.dropdown:hover > a::after,
.dropdown.active > a::after {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    font-size: 0.9rem;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background-color: rgba(45, 134, 89, 0.08);
    color: var(--primary-green);
    padding-left: 1.75rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-green);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Simple Hero Section */
.hero-simple {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 4rem 0;
    overflow: hidden;
}

.hero-simple-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-simple-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-simple-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.text-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-simple-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-simple-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-simple-form h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.hero-quick-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-form-group {
    position: relative;
}

.hero-form-group input,
.hero-form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.hero-form-group input:focus,
.hero-form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.btn-hero-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-hero-submit:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Clients Section - Compact Modern Design */
.clients-compact {
    background: var(--white);
    padding: 3rem 0;
    position: relative;
}

.clients-compact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.clients-compact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.clients-compact-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.clients-compact-header strong {
    color: var(--primary-green);
    font-weight: 700;
}

.clients-compact-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.client-compact-card {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.05) 0%, rgba(26, 92, 58, 0.05) 100%);
    border: 2px solid rgba(45, 134, 89, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.client-compact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.client-compact-card:hover::before {
    transform: scaleX(1);
}

.client-compact-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.1) 0%, rgba(26, 92, 58, 0.1) 100%);
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.15);
}

.client-compact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    transition: transform 0.3s ease;
    filter: grayscale(0.2);
}

.client-compact-card:hover .client-compact-icon {
    transform: scale(1.15) rotate(5deg);
    filter: grayscale(0);
}

.client-compact-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.client-compact-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .clients-compact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .clients-compact {
        padding: 2.5rem 0;
    }

    .clients-compact-header {
        margin-bottom: 2rem;
    }

    .clients-compact-header h2 {
        font-size: 2rem;
    }

    .clients-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-compact-card {
        padding: 1.25rem 0.75rem;
    }

    .client-compact-icon {
        font-size: 2rem;
    }

    .client-compact-text h3 {
        font-size: 0.95rem;
    }

    .client-compact-text p {
        font-size: 0.75rem;
    }
}

/* Services Showcase - Different Design */
.services-showcase {
    background: var(--white);
}

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

.service-showcase-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--dark-green) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-showcase-card:hover::before {
    transform: scaleX(1);
}

.service-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 134, 89, 0.15);
    border-color: var(--primary-green);
}

.service-showcase-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.service-showcase-card:hover .service-showcase-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-showcase-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-showcase-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Modern Hero Section */
.hero-modern {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

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

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation-delay: 5s;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: fadeInDown 0.8s ease;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title-line {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    opacity: 0.95;
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-feature-icon {
    width: 20px;
    height: 20px;
    background: var(--white);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.btn-hero-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.btn-hero-primary:hover .btn-hero-arrow {
    transform: translateX(5px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 1s both;
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

/* Quick Quote Section */
.quick-quote-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-quote-content h2 {
    margin-bottom: 1rem;
}

.quick-quote-benefits {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.quick-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.quick-benefit span:first-child {
    font-size: 1.2rem;
}

.quick-quote-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-quote-form {
    position: relative;
}

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

.quick-form-group input,
.quick-form-group select,
.quick-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.quick-form-group input::placeholder,
.quick-form-group textarea::placeholder {
    color: var(--text-light);
}

.quick-form-group input:focus,
.quick-form-group select:focus,
.quick-form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.quick-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d8659' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    background-color: rgba(255, 255, 255, 0.95);
}

.quick-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.quick-form-group .error {
    color: #ffebee;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.quick-form-group.error input,
.quick-form-group.error select,
.quick-form-group.error textarea {
    border-color: #ffebee;
}

.quick-form-group.error .error {
    display: block;
}

.btn-quick-quote {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-green);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-quick-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.btn-quick-quote .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-quick-quote:hover .btn-arrow {
    transform: translateX(5px);
}

/* Quote Page Styles */
.quote-page-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.quote-intro-content .lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.quote-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.quote-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-dark);
}

.benefit-icon {
    font-size: 1.5rem;
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.form-section-title:first-of-type {
    margin-top: 0;
}

/* Legacy Hero (for backward compatibility) */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

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

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

/* Container and Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
}

/* Why Choose Section - Compact Modern Design */
.why-choose-compact {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 0;
    position: relative;
}

.why-choose-compact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.why-choose-compact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.why-choose-compact-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.why-choose-compact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-compact-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(45, 134, 89, 0.1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.why-choose-compact-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-compact-item:hover::after {
    transform: scaleX(1);
}

.why-choose-compact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 8px 30px rgba(45, 134, 89, 0.15);
}

.why-compact-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.1), rgba(26, 92, 58, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(45, 134, 89, 0.2);
}

.why-choose-compact-item:hover .why-compact-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-color: var(--primary-green);
    transform: scale(1.1) rotate(5deg);
}

.why-compact-icon {
    font-size: 2.2rem;
    transition: transform 0.3s ease;
    filter: grayscale(0.3);
}

.why-choose-compact-item:hover .why-compact-icon {
    transform: scale(1.1);
    filter: grayscale(0) brightness(1.2);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.why-choose-compact-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.why-choose-compact-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 1200px) {
    .why-choose-compact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-compact {
        padding: 2.5rem 0;
    }

    .why-choose-compact-header {
        margin-bottom: 2rem;
    }

    .why-choose-compact-header h2 {
        font-size: 2rem;
    }

    .why-choose-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .why-choose-compact-item {
        padding: 1.75rem 1.25rem;
    }

    .why-compact-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .why-compact-icon {
        font-size: 1.8rem;
    }

    .why-choose-compact-item h3 {
        font-size: 1.1rem;
    }

    .why-choose-compact-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .why-choose-compact-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Grid - Modern Design (Legacy - kept for compatibility) */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 134, 89, 0.2);
    border-color: var(--primary-green);
}

.why-choose-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.2);
}

.why-choose-card:hover .why-choose-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.3);
}

.why-choose-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.why-choose-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.why-choose-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Features List (Legacy) */
.features-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.features-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: scale(1.05);
}

.project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-info {
    padding: 1.5rem;
    background: var(--white);
}

.project-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

/* Forms */
.form-section {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

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

.form-group .error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #e74c3c;
}

.form-group.error .error {
    display: block;
}

.form-success {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
}

.form-success.show {
    display: block;
}

/* Modern Contact Cards */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(45, 134, 89, 0.15);
    border-color: var(--primary-green);
}

.contact-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.contact-card-modern h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card-modern p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-card-modern a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-modern a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

/* Contact Forms Container */
.contact-forms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.form-container-modern {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.form-container-modern:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.form-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Modern Form Styles */
.form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group-modern {
    position: relative;
}

.form-group-modern label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group-modern input,
.form-group-modern textarea,
.form-group-modern select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus,
.form-group-modern select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group-modern textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-modern select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d8659' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group-modern .error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group-modern.error input,
.form-group-modern.error textarea,
.form-group-modern.error select {
    border-color: #e74c3c;
}

.form-group-modern.error .error {
    display: block;
}

/* Modern Success Message */
.form-success-modern {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: none;
    align-items: center;
    gap: 1rem;
    animation: slideDown 0.3s ease;
}

.form-success-modern.show {
    display: flex;
}

.success-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.form-success-modern strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.form-success-modern p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Modern Button */
.btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    margin-top: 0.5rem;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.3);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-modern:hover .btn-arrow {
    transform: translateX(5px);
}

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

/* Legacy Contact Info (for backward compatibility) */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.contact-item p {
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Lightbox/Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    position: relative;
    margin: 2% auto;
    max-width: 90%;
    max-height: 90%;
}

.modal-image {
    width: 100%;
    height: auto;
    display: block;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close-modal:hover {
    color: var(--accent-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 0.25rem;
    }

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

    .nav-links > li > a {
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: 8px;
    }

    .nav-links > li > a.active::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0;
        margin: 0.5rem 0 0 0;
        background: var(--bg-light);
        border-radius: 8px;
        min-width: auto;
        left: auto;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
    }

    .dropdown-menu a::before {
        display: none;
    }

    .dropdown > a::after {
        content: '▼';
    }

    .services-grid-premium {
        grid-template-columns: 1fr;
    }

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

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

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

    .form-container-modern {
        padding: 2rem 1.5rem;
    }

    .why-choose-timeline {
        padding-left: 2rem;
    }

    .why-choose-timeline::before {
        left: 1rem;
    }

    .why-choose-number {
        left: -2rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .why-choose-content-unique {
        padding: 2rem 1.5rem;
    }

    .why-choose-item-unique {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .why-choose-item-unique:hover .why-choose-content-unique {
        transform: translateX(5px);
    }

    .why-choose-header-unique h2 {
        font-size: 2.2rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-choose-card {
        padding: 2rem 1.5rem;
    }

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

    .logo {
        height: 40px;
    }

    .logo img {
        max-width: 150px;
    }

    .hero-simple-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-simple-text h1 {
        font-size: 2rem;
    }

    .hero-simple-form {
        padding: 2rem 1.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .services-showcase-grid {
        grid-template-columns: 1fr;
    }

    .hero-modern {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .hero-title-modern {
        font-size: 2.5rem;
    }

    .hero-title-line {
        font-size: 1.8rem;
    }

    .hero-title-highlight {
        font-size: 2.2rem;
    }

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

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        padding-top: 2rem;
    }

    .hero-shape-1,
    .hero-shape-2,
    .hero-shape-3 {
        display: none;
    }

    .quick-quote-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quick-quote-form-wrapper {
        padding: 2rem 1.5rem;
    }

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }
}

/* Modern About Page Styles */

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 4rem 0;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

/* Service Intro Section */
.service-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.service-intro-text .lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.service-intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-visual-card {
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 300px;
}

.service-visual-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-visual-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.service-visual-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* About Intro Section */
.about-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.highlight-icon {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: bold;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(45, 134, 89, 0.3);
    width: 100%;
    max-width: 300px;
}

.visual-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.visual-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.visual-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Premium Service Cards */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-premium {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.service-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    opacity: 0.15;
    transition: opacity 0.4s ease;
}

.service-card-premium:hover .service-card-bg {
    opacity: 0.25;
}

.service-card-content {
    position: relative;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    background: linear-gradient(to bottom, transparent 0%, var(--white) 30%);
}

.service-icon-premium {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.service-card-premium:hover .service-icon-premium {
    transform: scale(1.1) rotate(5deg);
}

.service-card-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-arrow {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: bold;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-card-premium:hover .service-arrow {
    transform: translateX(10px);
    color: var(--dark-green);
}

/* Service Card Modern Links (Legacy) */
.service-card-modern-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-modern-link:hover .service-card-modern {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(45, 134, 89, 0.2);
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card-modern-link:hover .service-link {
    transform: translateX(5px);
}

/* Modern Feature Cards */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(45, 134, 89, 0.15);
}

.feature-icon-modern {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card-modern h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card-modern p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Approach Steps */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
}

.approach-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.approach-step h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.approach-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.15);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.partner-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.partner-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

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

@media (max-width: 768px) {
    .about-intro,
    .service-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .features-grid-modern,
    .approach-grid,
    .values-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .visual-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    nav {
        padding: 1rem;
    }

    .logo {
        height: 35px;
    }

    .logo img {
        max-width: 120px;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Business Customers Section - Modern Design */
.business-customers-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

.business-customers-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.business-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.business-customers-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.business-subtitle {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.business-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.business-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.business-deliver-card,
.business-why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.business-deliver-card:hover,
.business-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(45, 134, 89, 0.15);
    border-color: var(--primary-green);
}

.business-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.business-card-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.business-card-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0;
}

.business-services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.business-service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.business-service-item:hover {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.05), rgba(26, 92, 58, 0.05));
    transform: translateX(5px);
}

.service-check-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-content strong {
    color: var(--text-dark);
    font-size: 1.05rem;
    display: block;
}

.service-content span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.business-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.05), rgba(26, 92, 58, 0.05));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.1), rgba(26, 92, 58, 0.1));
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text {
    flex: 1;
}

.benefit-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

.business-cta {
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
    text-align: center;
}

.business-cta p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-business {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.btn-business:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.4);
}

@media (max-width: 968px) {
    .business-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .business-customers-header h2 {
        font-size: 2.2rem;
    }

    .business-benefits {
        grid-template-columns: 1fr;
    }

    .business-deliver-card,
    .business-why-card {
        padding: 2rem;
    }
}

