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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    background-color: #fff;
    font-weight: 400;
}

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

a {
    color: #299603;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #1a6a01;
}

h1, h2, h3, h4, h5, h6 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 22px;
}

p {
    margin-bottom: 20px;
}

ul {
    list-style: none;
}

/* Layout */
.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.column {
    padding: 0 15px;
    margin-bottom: 30px;
}

.full {
    width: 100%;
}

.half {
    width: 50%;
}

.third {
    width: 33.33%;
}

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

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

/* Buttons */
.button, .submit-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #299603;
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.button:hover, .submit-btn:hover {
    background-color: #1a6a01;
    color: white;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1a6a01;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.logo-container {
    float: left;
    width: 20%;
}

#logo {
    max-height: 54px;
    width: auto;
}

#navigation {
    float: right;
    width: 80%;
    text-align: right;
    padding-top: 15px;
}

#top-menu {
    display: inline-block;
}

#top-menu li {
    display: inline-block;
    padding-right: 22px;
    position: relative;
}

#top-menu li:last-child {
    padding-right: 0;
}

#top-menu a {
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

#top-menu a:hover {
    color: #299603;
}

#top-menu .current-menu-item a {
    color: #299603;
}

.btn-header a {
    background-color: #299603;
    color: white !important;
    padding: 8px 15px;
    border-radius: 3px;
}

.btn-header a:hover {
    background-color: #1a6a01;
}

#mobile-nav {
    display: none;
}

/* Main Content */
#main-content {
    padding-top: 84px; /* Header height */
}

/* Sections */
.section {
    padding: 80px 0;
}

.banner-hero {
    background-color: #f9f9f9;
}

.hero-image {
    max-width: 100%;
}

.top-section {
    background-color: #299603;
    color: white;
    text-align: center;
}

.top-section h2, 
.top-section p {
    color: white;
}

.about-section {
    background-color: #f9f9f9;
}

.right-inner {
    padding: 20px;
}

/* Services */
.service-section {
    padding: 80px 0;
}

.service-head {
    margin-bottom: 40px;
    text-align: center;
    color: #299603;
}

.services-row {
    margin-bottom: 40px;
}

.service-box {
    transition: all 0.3s ease;
}

.service-content {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    height: 100%;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-box:hover .service-content {
    background-color: #299603;
    color: white;
}

.service-box:hover h4 {
    color: white;
}

.service-icon {
    margin-bottom: 20px;
}

.icon {
    width: 80px;
    height: 80px;
}

/* Contact Section */
.touch-section {
    background-image: url('images/Mask-group.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.inner-head {
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 5px;
}

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

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-row .form-group {
    padding: 0 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
}

textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
#footer {
    background-color: #000;
    color: white;
}

.footer-main {
    padding: 60px 0;
}

.footer-head {
    color: white;
    margin-bottom: 20px;
}

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

.footer-menu a {
    color: white;
}

.footer-menu a:hover {
    color: #299603;
}

.footer-contact {
    margin-top: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    color: white;
}

.phone-link img {
    margin-right: 10px;
    width: 30px;
}

.social-icons {
    margin-top: 20px;
}

.social-icon {
    width: 40px;
}

.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 980px) {
    .container {
        width: 90%;
    }
    
    .logo-container {
        width: 50%;
    }
    
    #navigation {
        width: 50%;
    }
    
    #top-menu {
        display: none;
    }
    
    #mobile-nav {
        display: block;
    }
    
    .mobile-menu-btn {
        font-size: 24px;
        cursor: pointer;
        color: #666;
    }
    
    .half, .third {
        width: 100%;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

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

.mobile-menu ul {
    padding: 20px;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    display: block;
    padding: 10px;
    color: #666;
    font-weight: 600;
}

.mobile-menu .btn-header a {
    display: inline-block;
}

/* Page Header */
.page-header {
    background-color: #299603;
    padding: 40px 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 0;
}

/* About Page Styles */
.about-content, .services-intro {
    padding: 40px 0;
}

.about-image-container {
    margin-bottom: 30px;
}

.about-text {
    padding: 20px;
}

.mission-section {
    background-color: #f9f9f9;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.values-section {
    padding: 80px 0;
}

.values-row {
    margin-bottom: 40px;
}

.value-box {
    background: white;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.value-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.value-box h3 {
    color: #299603;
    margin-bottom: 15px;
}

.team-section {
    background-color: #f9f9f9;
}

.cta-section {
    background-color: #299603;
    color: white;
    padding: 60px 0;
}

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

.cta-content h2, .cta-content p {
    color: white;
}

/* Services Page Styles */
.service-detail-row {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.service-detail-row:last-child {
    border-bottom: none;
}

.service-icon-large {
    text-align: center;
    margin-bottom: 20px;
}

.icon-large {
    width: 120px;
    height: 120px;
}

.service-detail-content h2 {
    margin-bottom: 20px;
    color: #299603;
}

.service-detail-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.service-list {
    list-style: disc;
    margin-left: 20px;
    padding-left: 20px;
}

.service-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* About Page Additional Styles */
.expect-section {
    background-color: #f9f9f9;
}

.expect-box {
    background: white;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-radius: 5px;
}

.expect-box h3 {
    color: #299603;
    margin-bottom: 15px;
}

/* FAQ Styles */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    color: #299603;
    margin-bottom: 10px;
}

.faq-item p {
    margin-bottom: 0;
}

/* Form Styles - Additional for Labels */
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

@media (max-width: 768px) {
    .service-icon-large {
        margin-bottom: 30px;
    }
    
    .column.two-thirds {
        width: 100%;
    }
    
    .service-detail-row {
        padding: 20px 0;
    }
}
