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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: #2c5530;
}

h3 {
    font-size: 1.5rem;
    color: #2c5530;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #4a7c59;
    color: white;
}

.btn-primary:hover {
    background-color: #2c5530;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #4a7c59;
    border: 2px solid #4a7c59;
}

.btn-secondary:hover {
    background-color: #4a7c59;
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-top {
    background-color: #2c5530;
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
}

.logo i {
    font-size: 2rem;
    margin-right: 10px;
    color: #4a7c59;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4a7c59;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 15px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #4a7c59;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.8), rgba(74, 124, 89, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="tree-pattern" patternUnits="userSpaceOnUse" width="200" height="200"><circle cx="100" cy="100" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="1200" height="800" fill="%234a7c59"/><rect width="1200" height="800" fill="url(%23tree-pattern)"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    font-size: 1.2rem;
    color: #90ee90;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #4a7c59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #2c5530;
}

.service-card p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-link {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: white;
}

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

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

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 15px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f8f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4a7c59;
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #2c5530;
}

.feature-card p {
    line-height: 1.7;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.area-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card h3 {
    color: #2c5530;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.area-card p {
    font-size: 0.95rem;
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background-color: #2c5530;
    color: white;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quote-info h2 {
    color: white;
    margin-bottom: 20px;
}

.quote-info p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #90ee90;
    margin-top: 5px;
    min-width: 25px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.contact-item p,
.contact-item a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    margin: 0;
}

.contact-item a:hover {
    color: #90ee90;
}

.quote-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

/* Footer */
.footer {
    background-color: #1a3a1e;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    margin-right: 10px;
    color: #90ee90;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

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

.footer-section a:hover {
    color: #90ee90;
}

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

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.footer-contact .contact-item i {
    color: #90ee90;
    min-width: 20px;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer-contact a:hover {
    color: #90ee90;
}

.business-hours {
    margin-top: 30px;
}

.business-hours h4 {
    color: white;
    margin-bottom: 10px;
}

.business-hours p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-features {
        gap: 20px;
    }
    
    .feature-item {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .quote-form {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding-top: 120px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .quote-form {
        padding: 20px 15px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Service Page Styles */
.service-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    text-align: center;
}

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

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.service-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.service-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.service-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-details {
    padding: 80px 0;
    background-color: white;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-main h2 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.service-main h3 {
    color: #2c5530;
    margin: 30px 0 15px;
    font-size: 1.6rem;
}

.service-main p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    line-height: 1.7;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li strong {
    color: #2c5530;
}

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

.process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4a7c59;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tree-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tree-type {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4a7c59;
}

.tree-type h4 {
    color: #2c5530;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tree-type h4 i {
    color: #4a7c59;
}

.tree-type p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.emergency-contact {
    background-color: #fff5f5;
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.emergency-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.emergency-info i {
    font-size: 3rem;
    color: #ff6b6b;
}

.emergency-info h4 {
    color: #d63031;
    margin-bottom: 5px;
}

.emergency-info p {
    color: #666;
    margin-bottom: 10px;
}

.emergency-phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d63031;
    text-decoration: none;
}

.emergency-phone:hover {
    text-decoration: underline;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.sidebar-card h3 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
}

.sidebar-card ul li:last-child {
    border-bottom: none;
}

.sidebar-card ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-card ul li a:hover {
    color: #4a7c59;
}

.quote-card {
    background-color: #2c5530;
    color: white;
}

.quote-card h3 {
    color: white;
}

.quote-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.quote-card .contact-info {
    margin-top: 20px;
}

.quote-card .contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.quote-card .contact-info i {
    color: #90ee90;
}

.quote-card .contact-info a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.quote-card .contact-info a:hover {
    color: #90ee90;
}

.timing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.timing-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4a7c59;
}

.timing-card h4 {
    color: #2c5530;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.timing-card h4 i {
    color: #4a7c59;
}

.timing-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.warning-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #fff5f5;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
}

.warning-item i {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-top: 5px;
}

.warning-item h4 {
    color: #d63031;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.warning-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Emergency Service Styles */
.emergency-alert {
    background-color: #fff5f5;
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.alert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.alert-content i {
    font-size: 3rem;
    color: #ff6b6b;
}

.alert-content h3 {
    color: #d63031;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.alert-content p {
    color: #666;
    margin: 0;
}

.alert-content a {
    color: #d63031;
    font-weight: 600;
    text-decoration: none;
}

.emergency-situations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.situation-card {
    background-color: #fff5f5;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
    text-align: center;
}

.situation-icon {
    width: 70px;
    height: 70px;
    background-color: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.situation-card h4 {
    color: #d63031;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

.criteria-section {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.criteria-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.criteria-list li:last-child {
    border-bottom: none;
}

.criteria-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.criteria-list.emergency li:before {
    color: #ff6b6b;
}

.criteria-list.urgent li:before {
    color: #ffa500;
}

.criteria-list.regular li:before {
    color: #4a7c59;
}

.safety-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.safety-tip {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.safety-tip i {
    color: #4a90e2;
    font-size: 1.5rem;
    margin-top: 5px;
}

.safety-tip h4 {
    color: #2c5aa0;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.safety-tip p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.coverage-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.area-group {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #4a7c59;
}

.area-group h4 {
    color: #2c5530;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.area-group p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.emergency-card {
    background-color: #d63031;
    color: white;
}

.emergency-card h3 {
    color: white;
    text-align: center;
}

.emergency-number {
    text-align: center;
    margin: 20px 0;
}

.emergency-number i {
    font-size: 2rem;
    margin-right: 10px;
    color: #90ee90;
}

.emergency-number a {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.emergency-number a:hover {
    color: #90ee90;
}

.emergency-card p {
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 15px;
}

.emergency-card ul {
    list-style: none;
    padding: 0;
}

.emergency-card ul li {
    padding: 8px 0;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: relative;
    padding-left: 20px;
}

.emergency-card ul li:last-child {
    border-bottom: none;
}

.emergency-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #90ee90;
    font-weight: bold;
}

.emergency-note {
    background-color: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
}

.emergency-note p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.9rem;
}

.emergency-note a {
    color: #90ee90;
    font-weight: 600;
    text-decoration: none;
}

.equipment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.equipment-card {
    background-color: #f0f8f2;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4a7c59;
}

.equipment-card h4 {
    color: #2c5530;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.equipment-card h4 i {
    color: #4a7c59;
}

.equipment-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.comparison-method {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.comparison-method h4 {
    color: #2c5530;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.comparison-method h4 i {
    color: #4a7c59;
}

.pros-cons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pros h5 {
    color: #4a7c59;
    margin-bottom: 10px;
}

.cons h5 {
    color: #d63031;
    margin-bottom: 10px;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros ul li,
.cons ul li {
    padding: 5px 0 5px 20px;
    color: #666;
    font-size: 0.9rem;
    position: relative;
}

.pros ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

.cons ul li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #d63031;
    font-weight: bold;
}

.pricing-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.factor-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.factor-item i {
    color: #4a7c59;
    font-size: 1.5rem;
    margin-top: 5px;
}

.factor-item h4 {
    color: #2c5530;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.factor-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Emergency Page Responsive */
@media (max-width: 768px) {
    .alert-content {
        flex-direction: column;
        text-align: center;
    }
    
    .emergency-situations {
        grid-template-columns: 1fr;
    }
    
    .emergency-criteria {
        grid-template-columns: 1fr;
    }
    
    .safety-tips {
        grid-template-columns: 1fr;
    }
    
    .coverage-areas {
        grid-template-columns: 1fr;
    }
    
    .equipment-info {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .pricing-factors {
        grid-template-columns: 1fr;
    }
}

/* Power Line Specific Styles */
.safety-warning {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.warning-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.warning-content i {
    font-size: 3rem;
    color: #ffc107;
}

.warning-content h3 {
    color: #856404;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.warning-content p {
    color: #856404;
    margin: 0;
    font-weight: 500;
}

.clearance-standards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.standard-card {
    background-color: #fff8e1;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.standard-card h4 {
    color: #e65100;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.standard-card h4 i {
    color: #ff9800;
}

.clearance-details p {
    color: #bf360c;
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.clearance-details p:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff9800;
    font-weight: bold;
}

.clearance-details strong {
    color: #e65100;
}

.maintenance-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.benefit-item i {
    color: #2196f3;
    font-size: 1.5rem;
    margin-top: 5px;
}

.benefit-item h4 {
    color: #1565c0;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background-color: white;
}

.about-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-main h2 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about-main h3 {
    color: #2c5530;
    margin: 30px 0 15px;
    font-size: 1.6rem;
}

.about-main p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.team-feature {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.team-feature i {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 15px;
}

.team-feature h4 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.team-feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

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

.choose-item {
    text-align: center;
    padding: 25px;
}

.choose-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 15px;
}

.choose-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f8f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4a7c59;
    font-size: 2rem;
}

.choose-item h4 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.choose-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.company-quote {
    background-color: #f0f8f2;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #4a7c59;
    margin: 30px 0;
    font-style: italic;
}

.company-quote p {
    color: #2c5530;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.company-quote cite {
    color: #4a7c59;
    font-weight: 600;
    font-style: normal;
}

.environmental-practices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.practice-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f0f8f2;
    padding: 20px;
    border-radius: 8px;
}

.practice-item i {
    color: #4a7c59;
    font-size: 1.5rem;
    margin-top: 5px;
}

.practice-item h4 {
    color: #2c5530;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.practice-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.fact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fact-item {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
}

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

.fact-item strong {
    color: #2c5530;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.contact-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: #4a7c59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.contact-card h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-detail a {
    color: #4a7c59;
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-form-section {
    padding: 80px 0;
    background-color: white;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-info h2 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.form-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

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

.form-group label {
    color: #2c5530;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.btn-full {
    width: 100%;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin: 10px 0 0;
}

.service-area-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-area-content h2 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 2.2rem;
    text-align: center;
}

.service-area-content > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.county-section h3 {
    color: #2c5530;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.county-section h3 i {
    color: #4a7c59;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cities-list span {
    background-color: #f0f8f2;
    color: #2c5530;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
}

.service-note {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 4px solid #2196f3;
}

.service-note i {
    color: #2196f3;
    font-size: 1.5rem;
    margin-top: 2px;
}

.service-note p {
    color: #1565c0;
    margin: 0;
    line-height: 1.6;
}

.emergency-contact-section {
    padding: 60px 0;
    background-color: #d63031;
    color: white;
}

.emergency-banner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.emergency-icon {
    font-size: 4rem;
    color: #ffc107;
}

.emergency-text h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.emergency-text p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.emergency-phone {
    color: #90ee90;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
}

.emergency-phone:hover {
    text-decoration: underline;
}

.emergency-situations {
    background-color: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
}

.emergency-situations h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.emergency-situations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.emergency-situations li {
    padding: 5px 0 5px 20px;
    color: rgba(255,255,255,0.9);
    position: relative;
}

.emergency-situations li:before {
    content: "!";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255,193,7,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .warning-content {
        flex-direction: column;
        text-align: center;
    }
    
    .clearance-standards {
        grid-template-columns: 1fr;
    }
    
    .maintenance-benefits {
        grid-template-columns: 1fr;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .environmental-practices {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-counties {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .emergency-banner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Service Page Responsive Design */
@media (max-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 130px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .service-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .service-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .tree-types {
        grid-template-columns: 1fr;
    }
    
    .emergency-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .sidebar-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-main h2 {
        font-size: 1.8rem;
    }
    
    .service-main h3 {
        font-size: 1.4rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero,
    .service-hero,
    .quote-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
}