@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
    --primary-gold: #DAA520;
    --secondary-dark: #222222;
    --white: #FFFFFF;
    --light-grey: #F8F8F8;
    --gold-hover: #C49519;
    --text-grey: #555555;
    --transition-base: 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-dark);
    z-index: 1000;
    transition: height 0.3s ease;
}

.header.scrolled {
    height: 60px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.nav-desktop {
    display: none;
}

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

.nav-desktop a {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: all 0.2s ease-in-out;
    transform: translateX(-50%);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-desktop .dropdown {
    position: relative;
}

.nav-desktop .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-dark);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    padding: 10px 0;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: rgba(218, 165, 32, 0.1);
}

.header-cta {
    display: none;
}

.phone-link {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    display: none;
}

/* Mobile Menu Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    list-style: none;
    text-align: center;
}

.mobile-nav li {
    margin: 20px 0;
}

.mobile-nav a {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.mobile-contact {
    position: absolute;
    bottom: 40px;
    text-align: center;
}

.mobile-contact .phone-link {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--secondary-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--gold-hover);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
    transform: translateY(-2px);
}

.cta-button.small {
    padding: 10px 20px;
    font-size: 14px;
}

.secondary-cta {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    border: 2px solid var(--primary-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background-color: var(--primary-gold);
    color: var(--secondary-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.85) 0%, rgba(34, 34, 34, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    color: var(--white);
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero .cta-button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-form {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    margin-left: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-form h3 {
    color: var(--secondary-dark);
    margin-bottom: 20px;
    font-size: 22px;
}

.hero-form .form-group {
    margin-bottom: 15px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2);
}

.hero-form button {
    width: 100%;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

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

.section-title h2 {
    font-size: 36px;
    color: var(--secondary-dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-grey);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

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

.service-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-dark);
}

.service-card p {
    color: var(--text-grey);
    margin-bottom: 20px;
}

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

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
}

.why-choose-text {
    padding-right: 0;
}

.why-choose-text p {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 30px;
}

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

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.why-choose-list li.visible {
    opacity: 1;
    transform: translateX(0);
}

.why-choose-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background-color: var(--primary-gold);
    color: var(--secondary-dark);
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.why-choose-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--secondary-dark);
    color: var(--white);
}

.testimonials-section .section-title h2 {
    color: var(--white);
}

.testimonials-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.testimonial-card .quote-icon {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--primary-gold);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-nav button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.testimonial-nav button:hover {
    color: var(--primary-gold);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 0;
}

.testimonial-dots button.active {
    background-color: var(--primary-gold);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-gold);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--secondary-dark);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 20px;
    color: var(--secondary-dark);
    margin-bottom: 30px;
}

.cta-section .cta-button {
    background-color: var(--secondary-dark);
    color: var(--white);
}

.cta-section .cta-button:hover {
    background-color: #333;
    box-shadow: 0 4px 15px rgba(34, 34, 34, 0.4);
}

/* Footer Styles */
.footer {
    background-color: var(--secondary-dark);
    color: var(--light-grey);
    padding: 60px 0 20px;
}

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

.footer-brand h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand .tagline {
    font-size: 14px;
    margin-bottom: 20px;
    color: rgba(248, 248, 248, 0.7);
}

.footer-brand .contact-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-brand .contact-info a {
    color: var(--primary-gold);
}

.footer-brand .trust-badge {
    margin-top: 20px;
}

.footer-brand .trust-badge img {
    height: 50px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-column ul a {
    font-size: 14px;
    color: rgba(248, 248, 248, 0.7);
}

.footer-column ul a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-gold);
    color: var(--secondary-dark);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(248, 248, 248, 0.5);
}

.footer-bottom a {
    color: rgba(248, 248, 248, 0.5);
}

.footer-bottom a:hover {
    color: var(--primary-gold);
}

/* Page Hero (for inner pages) */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.9) 0%, rgba(34, 34, 34, 0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

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

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

/* About Page Styles */
.story-section {
    padding: 80px 0;
}

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

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-dark);
}

.story-text p {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
}

/* Differentiators Section */
.differentiators-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.diff-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.diff-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.diff-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-dark);
}

.diff-card p {
    font-size: 15px;
    color: var(--text-grey);
}

/* Service Area Section */
.service-area-section {
    padding: 80px 0;
}

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

.service-area-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.service-area-content p {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 40px;
    line-height: 1.8;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Services Page Specific */
.service-categories {
    padding: 80px 0;
    background-color: var(--light-grey);
}

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

.pest-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.pest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.pest-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-dark);
}

.pest-card p {
    font-size: 14px;
    color: var(--text-grey);
}

.resources-tease {
    padding: 80px 0;
    background-color: var(--secondary-dark);
    text-align: center;
    color: var(--white);
}

.resources-tease h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.resources-tease p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Resources Page Styles */
.pest-library-section {
    padding: 80px 0;
}

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

.category-card {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-dark);
}

.category-card p {
    font-size: 14px;
    color: var(--text-grey);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

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

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.blog-card-content {
    padding: 25px;
}

.blog-card .date {
    font-size: 13px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-dark);
}

.blog-card p {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.blog-card a {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 14px;
}

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

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

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

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

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

.contact-form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--secondary-dark);
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2);
}

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

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

.contact-info-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--secondary-dark);
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-info-list .icon {
    min-width: 40px;
    height: 40px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--secondary-dark);
    font-size: 18px;
}

.contact-info-list .content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--secondary-dark);
}

.contact-info-list .content p {
    font-size: 15px;
    color: var(--text-grey);
}

.contact-info-list .content a {
    color: var(--primary-gold);
}

/* Section Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .nav-desktop ul {
        display: flex;
    }

    .phone-link {
        display: block;
    }

    .header-cta {
        display: inline-block;
    }

    .menu-toggle {
        display: none;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-content {
        grid-template-columns: 1fr 1fr;
    }

    .story-text {
        padding-right: 30px;
    }

    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

@media (min-width: 1024px) {
    .hero-inner {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .hero-content {
        flex: 1;
    }

    .hero-form {
        flex: 0 0 380px;
        margin-left: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .diff-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pest-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

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

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

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

    .page-hero {
        min-height: 300px;
    }

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

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

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card p {
        font-size: 16px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero h1,
    .hero p,
    .hero .cta-button {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .fade-in-section {
        opacity: 1;
        transform: none;
    }
}
