/* Why Choose Section */
.why-choose-section {
    padding: 60px 0;
    background: #f9f9f9;
    margin: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #4CAF50;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 3px solid #4CAF50;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #4CAF50;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
}

/* Page Hero */
.page-hero {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
}

.page-hero h1 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

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

:root {
    --primary-green: #224C2A;
    --secondary-green: #4a7c2a;
    --light-green: #a8d5a8;
    --dark-green: #1f350f;
    --dark-blue: #1e3a5f;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

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

/* Header Styles */
.site-header {
    background: var(--dark-blue);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 70px;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
}

.logo-img {
    height: 65px;
    width: auto;
    display: block;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 1.5rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 0.5rem 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    line-height: 1.5;
    border-radius: 4px;
}

.dropdown-arrow {
    font-size: 0.6rem;
    opacity: 0.8;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.main-nav > ul > li:hover .dropdown-arrow {
    transform: translateY(2px);
}

.main-nav > ul > li > a:hover {
    color: var(--light-green);
    background: rgba(255, 255, 255, 0.1);
}

.main-nav > ul > li > a.active {
    color: var(--light-green);
}

/* Dropdown Submenu */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-blue);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 220px;
    margin: 0;
    border-radius: 6px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

/* Create invisible bridge area to prevent gap when moving to submenu */
.main-nav > ul > li:has(.submenu)::before {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 0.75rem;
    z-index: 999;
    background: transparent;
}

/* Show submenu on hover */
.main-nav > ul > li:hover > .submenu {
    display: block;
    opacity: 1;
    transform: translateY(5px);
    pointer-events: auto;
}

/* Submenu items */
.submenu li {
    margin: 0;
    padding: 0;
}

.submenu a {
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    display: block !important;
    white-space: nowrap;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.submenu a:hover {
    background: rgba(255,255,255,0.1) !important;
    color: var(--light-green) !important;
    padding-left: 1.75rem !important;
}

/* Add a small gap between menu and submenu */
.main-nav > ul > li {
    position: relative;
}

/* Style for submenu items */
.main-nav > ul > li.has-submenu {
    position: relative;
}

.main-nav > ul > li.has-submenu:hover > .submenu {
    display: block;
    opacity: 1;
    transform: translateY(5px);
    pointer-events: auto;
}

/* Submenu items */
.submenu li {
    margin: 0;
    padding: 0;
}

.submenu a {
    color: var(--white) !important;
    padding: 0.5rem 1.5rem !important;
    display: block !important;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.submenu a:hover {
    background: rgba(255,255,255,0.1) !important;
    color: var(--light-green) !important;
    padding-left: 1.75rem !important;
}

/* Keep submenu visible when hovering directly over it */
.main-nav > ul > li .submenu:hover {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.submenu li {
    padding: 0;
    margin: 0;
}

.submenu a {
    padding: 0.75rem 1.5rem;
    color: var(--white);
    font-size: 14px;
    display: block;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.submenu a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--light-green);
}

/* Header Phone Button */
.header-phone {
    flex-shrink: 0;
}

.header-phone a {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.header-phone a:hover {
    background: var(--dark-green);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

/* Hero Section - Base Styles */
.hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    margin: 0 0 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero CTA Button */
.hero-cta {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-cta:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
        min-height: 50vh;
        margin: 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

.hero-cta {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-cta:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0 auto 1rem;
    max-width: 900px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin: 0 auto 2rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    max-width: 700px;
    line-height: 1.6;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
    color: var(--white);
}

.hero-cta {
    display: inline-block;
    background: var(--dark-blue);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    background: #152a47;
}

/* Proven Quality Section */
.proven-quality {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
}

.proven-quality::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,50 Q30,30 50,50 T80,50" stroke="%23e0e0e0" fill="none" stroke-width="0.5" opacity="0.3"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.proven-quality .container {
    position: relative;
    z-index: 1;
}

.proven-quality h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.proven-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-farm {
    background: var(--light-green);
    color: var(--text-dark);
}

.feature-experts {
    background: var(--dark-blue);
    color: var(--white);
}

.feature-service {
    background: var(--light-green);
    color: var(--text-dark);
}

.feature-guarantee {
    background: var(--dark-blue);
    color: var(--white);
}

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

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

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 15px;
    margin: 0;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.services-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-color: var(--light-green);
    height: 100%;
}

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

.service-card p {
    margin-bottom: 1.75rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    flex-grow: 1;
}

.learn-more-btn {
    display: inline-block;
    background: var(--dark-blue);
    color: var(--white);
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

.learn-more-btn:hover {
    background: #152a47;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

/* Fresh Sod Section */
.fresh-sod {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
}

.fresh-sod::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,50 Q30,30 50,50 T80,50" stroke="%23e0e0e0" fill="none" stroke-width="0.5" opacity="0.3"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.fresh-sod .container {
    position: relative;
    z-index: 1;
}

.fresh-sod-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.fresh-sod-text {
    flex: 1;
    min-width: 400px;
}

.fresh-sod-image {
    flex: 1;
    min-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.fresh-sod-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.fresh-sod-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .fresh-sod-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .fresh-sod-text,
    .fresh-sod-image {
        min-width: 100%;
    }
}

.fresh-sod-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.fresh-sod-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.fresh-sod-features {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.fresh-sod-feature {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.feature-icon-large {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.fresh-sod-feature h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.fresh-sod-feature p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/images/grass-texture.webp') center/cover no-repeat;
    background-attachment: fixed;
    color: #ffffff;
}

/* Target only the feature cards within Why Choose section */
.why-choose .feature-card {
    background: rgba(245, 250, 242, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(200, 225, 190, 0.5);
}

.why-choose .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: rgba(240, 248, 235, 0.95);
    border-color: var(--primary-green);
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(to bottom, var(--primary-green), transparent);
    z-index: 1;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(to top, var(--primary-green), transparent);
    z-index: 1;
}

.why-choose .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.why-choose .section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

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

.feature-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

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

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

/* About Preview Section */
.about-preview {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text,
    .about-image {
        width: 100%;
    }
}

.about-content {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-text h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    background: var(--light-green);
    padding: 3rem 2rem;
    border-radius: 10px;
}

.about-feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.about-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.about-feature-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.about-feature-card p {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Page Content */
.page-content {
    padding: 4rem 0;
    background: var(--white);
}

.page-content h1 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.page-content h2 {
    color: var(--primary-green);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 2rem;
    font-weight: 600;
}

.page-content h3 {
    color: var(--primary-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.page-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 16px;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.page-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.page-content a {
    color: var(--primary-green);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-green);
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: var(--secondary-green);
    border-color: var(--secondary-green);
}

/* List Pages */
.list-content {
    margin-top: 2.5rem;
}

.list-item {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.list-item h2 {
    margin-bottom: 1rem;
}

.list-item h2 a {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 1.8rem;
}

.list-item h2 a:hover {
    color: var(--secondary-green);
}

/* Footer */
.site-footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 2rem 0 1.5rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    display: block;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--dark-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-section p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.7;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.2);
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
    font-size: 15px;
}

.footer-section a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-section p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-size: 15px;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.85;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 968px) {
    .main-nav {
        margin: 0 1rem;
    }
    
    .main-nav ul {
        gap: 1.5rem;
    }
    
    .main-nav a {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .main-nav ul {
        gap: 1rem;
    }
    
    .main-nav a {
        font-size: 14px;
        padding: 0.5rem;
    }
    
    .header-phone a {
        padding: 0.65rem 1.25rem;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        flex-wrap: nowrap;
        gap: 1rem;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-blue);
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .main-nav.active {
        max-height: 500px;
        overflow-y: auto;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0;
        width: 100%;
    }
    
    .main-nav > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav a {
        padding: 1rem 1.5rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
        border-radius: 0;
    }
    
    .main-nav > ul > li > a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .submenu {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        margin: 0;
        border-radius: 0;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        min-width: 100%;
    }
    
    .main-nav > ul > li:hover .submenu,
    .main-nav > ul > li.active .submenu {
        display: block;
    }
    
    .submenu a {
        padding: 0.75rem 2.5rem;
        color: var(--white);
        opacity: 0.9;
    }
    
    .submenu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--light-green);
    }
    
    .header-phone {
        margin-left: auto;
    }
    
    .header-phone a {
        padding: 0.65rem 1rem;
        font-size: 14px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 4rem 1.5rem;
        min-height: 500px;
    }
    
    .feature-grid,
    .services-grid,
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services h2,
    .proven-quality h2,
    .about-text h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-cta,
    .learn-more-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
