/* Greenlogix Website - Authentic WordPress Style Recreation */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: #ffffff;
    border-bottom: 3px solid #4CAF50;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo h1 {
    color: #2E7D32;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.logo .tagline {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    display: block;
    margin-top: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.nav-links a {
    color: #2E7D32;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: #4CAF50;
    color: white;
}

/* Main Content */
.main-content {
    margin-top: 20px;
    min-height: 60vh;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8F5E8, #F1F8E9);
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid #4CAF50;
}

.hero-content h1 {
    color: #2E7D32;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.read-more-btn, .contact-btn {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more-btn:hover, .contact-btn:hover {
    background: #388E3C;
}

/* Page Header */
.page-header {
    background: #F5F5F5;
    padding: 40px 0;
    border-bottom: 3px solid #4CAF50;
}

.page-header h1 {
    color: #2E7D32;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
}

/* Content Sections */
.content-section {
    padding: 40px 0;
}

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

.content p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

.content h2 {
    color: #2E7D32;
    font-size: 1.6rem;
    margin: 30px 0 15px 0;
    font-weight: bold;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 5px;
}

.content h3 {
    color: #2E7D32;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: bold;
}

.content ul {
    margin: 15px 0 20px 30px;
}

.content li {
    margin-bottom: 8px;
    color: #444;
    line-height: 1.6;
}

.content strong {
    color: #2E7D32;
    font-weight: bold;
}

/* Services Grid */
.services-overview {
    background: #F9F9F9;
    padding: 50px 0;
}

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

.service-item {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #4CAF50;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-item h3 a {
    color: #2E7D32;
    text-decoration: none;
    font-weight: bold;
}

.service-item h3 a:hover {
    color: #4CAF50;
}

.service-item p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* Call to Action */
.call-to-action {
    background: #2E7D32;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.cta-content h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #E8F5E8;
    font-weight: normal;
    font-style: italic;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.contact-info {
    background: #F9F9F9;
    padding: 30px;
    border-radius: 8px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E0E0E0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    color: #2E7D32;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-item p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.contact-item a {
    color: #2E7D32;
    text-decoration: none;
}

.contact-item a:hover {
    color: #4CAF50;
    text-decoration: underline;
}

.trademark {
    font-size: 12px;
    color: #888;
    font-style: italic;
    margin-top: 20px;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #2E7D32;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #E0E0E0;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

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

/* Solutions Section */
.solutions-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #E0E0E0;
}

.solutions-section h2 {
    color: #2E7D32;
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-align: center;
}

.solutions-section p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

/* Client Sectors */
.client-sectors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 30px 0;
    list-style: none;
    padding: 0;
}

.client-sectors li {
    background: #E8F5E8;
    padding: 12px 15px;
    border-radius: 5px;
    text-align: center;
    color: #2E7D32;
    font-weight: 500;
    border-left: 4px solid #4CAF50;
}

/* Footer */
.footer {
    background: #2E7D32;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

.footer p {
    margin: 0;
    font-size: 13px;
    color: #E8F5E8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        justify-content: center;
        margin-top: 20px;
    }

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

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

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

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

    .client-sectors {
        grid-template-columns: 1fr;
    }
}

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

    .logo h1 {
        font-size: 1.8rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

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