/* ===================================
   MOWOLOGY WEBSITE STYLES
   =================================== */

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

:root {
    --primary-green: #4a7c2c;
    --dark-green: #2d5016;
    --light-green: #6ba83f;
    --accent-orange: #e85d04;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1px;
}

.logo-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--text-medium);
    letter-spacing: 2px;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

.nav-phone {
    background: var(--primary-green);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.nav-phone:hover {
    background: var(--dark-green);
    color: white !important;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-home {
    background: linear-gradient(rgba(45, 80, 22, 0.7), rgba(74, 124, 44, 0.7)), url('hero-image.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
}

.btn-primary:hover {
    background: #c75003;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 93, 4, 0.3);
}

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

.btn-secondary:hover {
    background: transparent;
    color: white;
}

.btn-primary-large {
    background: var(--accent-orange);
    color: white;
    padding: 18px 40px;
    font-size: 18px;
}

.btn-primary-large:hover {
    background: #c75003;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232, 93, 4, 0.4);
}

.btn-secondary-large {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 18px 40px;
    font-size: 18px;
}

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

.btn-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--accent-orange);
}

/* ===================================
   SECTIONS
   =================================== */

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--bg-light);
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-medium);
    font-size: 15px;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
}

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

.feature {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.feature p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.area-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.area-card h3 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.area-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   PAGE HERO
   =================================== */

.page-hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

/* ===================================
   SERVICES PAGE
   =================================== */

.service-detail {
    padding: 80px 0;
}

.service-detail.alt-bg {
    background: var(--bg-light);
}

.service-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.service-icon-large {
    font-size: 80px;
    flex-shrink: 0;
}

.service-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.service-intro {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-benefits {
    margin-bottom: 60px;
}

.service-benefits h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-green);
}

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

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.benefit-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.service-offerings h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-green);
}

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

.offering {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.offering h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.offering ul {
    list-style: none;
}

.offering li {
    padding: 8px 0;
    color: var(--text-medium);
    padding-left: 25px;
    position: relative;
}

.offering li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.additional-services {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.capability-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.capability-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.capability-card ul {
    list-style: none;
}

.capability-card li {
    padding: 8px 0;
    color: var(--text-medium);
}

.service-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===================================
   CONTACT PAGE
   =================================== */

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

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-wrapper h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.contact-intro {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-method {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.contact-method h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-method p {
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: color 0.3s ease;
}

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

.office-hours-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.office-hours-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.contact-info-card h4 {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-card p {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 16px;
}

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details > div {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.contact-details > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    padding: 10px 0;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
}

.contact-note {
    font-size: 14px !important;
    color: var(--text-light) !important;
    font-style: italic;
    margin-top: 5px !important;
}

.hours-list {
    margin: 20px 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

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

.hours-row span:first-child {
    color: var(--text-dark);
    font-weight: 500;
}

.hours-row span:last-child {
    color: var(--text-medium);
}

.alt-contact {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.alt-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Form Styles (for get-quote.html) */

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

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.form-intro {
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.form-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
    text-align: center;
}

.form-success {
    background: #d4edda;
    border: 2px solid #28a745;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.form-success h3 {
    color: #28a745;
    margin-bottom: 15px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-method p {
    color: var(--text-medium);
    margin-bottom: 5px;
}

.contact-method a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

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

.contact-note {
    font-size: 14px;
    color: var(--text-light);
}

.why-list {
    list-style: none;
}

.why-list li {
    padding: 10px 0;
    color: var(--text-medium);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-row span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-row span:last-child {
    color: var(--text-medium);
}

.alt-contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.alt-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ===================================
   PORTFOLIO PAGE
   =================================== */

.portfolio-intro {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.intro-content p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text-medium);
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.portfolio-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.portfolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.portfolio-location {
    color: var(--text-medium);
    margin-bottom: 15px;
    font-size: 14px;
}

.portfolio-desc {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 600;
}

.results-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 600;
}

/* ===================================
   ABOUT PAGE
   =================================== */

.about-intro {
    padding: 80px 0;
}

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

.about-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-green);
}

.lead-text {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-content p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-values {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.value-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.value-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

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

.what-makes-different {
    padding: 80px 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.difference-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.difference-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.difference-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.why-trust {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.trust-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
}

.trust-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.trust-label {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 600;
}

.certifications {
    padding: 80px 0;
}

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

.cert-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
}

.cert-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.cert-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.commitment-text p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 25px;
}

.commitment-list {
    list-style: none;
    margin: 30px 0;
}

.commitment-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 17px;
}

.final-commitment {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 30px;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--light-green);
    font-weight: 600;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .contact-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons,
    .alt-contact-buttons {
        flex-direction: column;
    }
    
    .btn,
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }
    
    .features-grid,
    .benefits-grid,
    .offerings-grid,
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 24px;
    }
    
    .logo-tagline {
        font-size: 9px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary-green);
    color: white;
}
