/* Four Seasons Pest Control - Main Stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

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

/* Top Bar */
.top-bar {
    background: #1a1a1a;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: white;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #3ecbac;
}

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

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    max-width: 180px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: #2a9d8f;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 220px;
    padding: 10px 0;
    z-index: 100;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
}

.dropdown-menu a:hover {
    background: #f0fdf9;
    color: #2a9d8f;
}

.cta-button {
    background: linear-gradient(135deg, #3ecbac, #2a9d8f);
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 157, 143, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3ecbac 0%, #2a9d8f 100%);
    color: white;
    padding: 80px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
}

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

.btn-white {
    background: white;
    color: #2a9d8f;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: white;
    color: #2a9d8f;
}

/* Page Hero (smaller) */
.page-hero {
    background: linear-gradient(135deg, #3ecbac 0%, #2a9d8f 100%);
    color: white;
    padding: 50px 0;
}

.page-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

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

/* Features */
.features {
    padding: 60px 0;
    background: white;
}

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

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: #e6f7f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.service-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.service-card .learn-more {
    color: #2a9d8f;
    font-weight: 600;
}

.service-card .learn-more:hover {
    text-decoration: underline;
}

/* Why Choose Us */
.why-us {
    padding: 60px 0;
    background: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

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

.why-us-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.check-icon {
    color: #2a9d8f;
    font-size: 24px;
    flex-shrink: 0;
}

.why-us-list strong {
    display: block;
    margin-bottom: 5px;
}

.why-us-list span {
    color: #666;
    font-size: 14px;
}

.quote-box {
    background: linear-gradient(135deg, #3ecbac 0%, #2a9d8f 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
}

.quote-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.quote-box p {
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: #f8f9fa;
}

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

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

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

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial .author {
    font-weight: 600;
    color: #333;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3ecbac 0%, #2a9d8f 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

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

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

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

.footer-col p {
    color: #999;
    font-size: 14px;
}

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

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

.footer-col ul a {
    color: #999;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: #3ecbac;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.footer-bottom a {
    color: #3ecbac;
}

/* Service Detail Page */
.service-detail {
    padding: 60px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.service-content h2 {
    font-size: 28px;
    margin: 30px 0 15px;
    color: #2a9d8f;
}

.service-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.step {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: #2a9d8f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.step h4 {
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: #666;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.faq-item h4 {
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    color: #666;
    font-size: 14px;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
}

.sidebar-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.feature-list .check {
    color: #2a9d8f;
    font-size: 18px;
}

.sidebar-cta {
    background: #2a9d8f;
    color: white;
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sidebar-cta:hover {
    background: #238b7e;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #e6f7f4, #d0f0e8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    opacity: 0.6;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 13px;
}

.blog-category {
    background: #e6f7f4;
    color: #2a9d8f;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.blog-date {
    color: #999;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-card h3 a:hover {
    color: #2a9d8f;
}

.blog-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: #2a9d8f;
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

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

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #e6f7f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item p, .contact-item a {
    color: #666;
}

.contact-item a:hover {
    color: #2a9d8f;
}

.service-area {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.service-area h4 {
    margin-bottom: 10px;
}

.service-area p {
    color: #666;
    font-size: 14px;
}

.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.contact-form-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-form-box > p {
    color: #666;
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

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

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

.submit-btn {
    background: linear-gradient(135deg, #3ecbac, #2a9d8f);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 157, 143, 0.4);
}

.map-section {
    padding: 30px 0;
    background: #f8f9fa;
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 15px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .why-us-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

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

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .top-bar .container {
        justify-content: center;
        text-align: center;
    }
}
