/* ===========================
   Color Palette (from logo & Riverina landscape)
   ===========================
   Primary: #800000 (Maroon)
   Dark: #4a0000 (Dark Maroon)
   Accent: #6B7F5A (Sage Green - from landscape)
   Light: #F5F5DC (Beige)
   Text: #2C2C2C (Almost Black)
*/

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

:root {
    --primary-maroon: #800000;
    --dark-maroon: #290000;
    --accent-sage: #6B7F5A;
    --accent-light-sage: #8A9E7A;
    --accent-rust: #A0522D;
    --bg-beige: #F5F5DC;
    --bg-light-tan: #FAF8F3;
    --bg-white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-medium: #5C5C5C;
    --text-light: #8C8C8C;
    --border-light: #E5E5E5;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-beige);
    font-size: 16px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--dark-maroon) 40%, var(--primary-maroon) 100%);
    color: white;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--accent-sage);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 50px;
    width: auto;
    padding: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
}

.nav-brand h1 {
    font-size: 1.75rem;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-brand h1 span {
    color: var(--accent-sage);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--accent-light-sage);
    border-bottom-color: var(--accent-light-sage);
}

.nav-menu a.active {
    color: var(--accent-light-sage);
    border-bottom-color: var(--accent-light-sage);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--dark-maroon) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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 1200 120"><path d="M0,0 L1200,0 L1200,60 Q600,120 0,60 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.hero-points .point {
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.hero-points .point:hover {
    background-color: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--accent-light-sage) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 127, 90, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light-sage) 0%, var(--accent-sage) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(107, 127, 90, 0.5);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-maroon);
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--accent-sage), transparent);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-medium);
    font-weight: 400;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-beige));
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.difference-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-maroon);
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.difference-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-maroon);
    opacity: 0.05;
    border-radius: 0 12px 0 100%;
}

.difference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(128, 0, 0, 0.2);
    border-left-width: 8px;
}

.difference-card h3 {
    color: var(--primary-maroon);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

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

/* Riverina Landscape Section */
.riverina-showcase {
    position: relative;
    min-height: 700px;
    padding: 6rem 0;
    background-image: url('riverina backgorund 2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.riverina-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.7) 0%, rgba(74, 0, 0, 0.6) 50%, rgba(107, 127, 90, 0.5) 100%);
}

.riverina-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 3rem;
}

.riverina-content h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.riverina-content h2::after {
    background: linear-gradient(to right, transparent, white, transparent);
}

.riverina-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.riverina-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 180px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-light-sage);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Area */
.service-area {
    background: var(--bg-beige);
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
    border-top: 4px solid var(--accent-sage);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.2);
}

.benefit strong {
    color: var(--primary-maroon);
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    background-color: white;
}

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

.testimonial-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--accent-sage);
    font-style: italic;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-maroon);
    font-style: normal;
    margin-top: 1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--dark-maroon) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta h2 {
    color: white;
}

.cta h2::after {
    background: linear-gradient(to right, transparent, white, transparent);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Services Page */
.page-header {
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--dark-maroon) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 4px solid var(--accent-sage);
}

.page-header h2 {
    color: white;
}

.page-header h2::after {
    background: linear-gradient(to right, transparent, var(--accent-sage), transparent);
}

.services-detail {
    background: var(--bg-white);
}

.service-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.pest-coverage {
    margin: 4rem 0;
}

.pest-coverage h3 {
    text-align: center;
    color: var(--primary-maroon);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.pest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.pest-item {
    background: linear-gradient(135deg, white, var(--bg-beige));
    padding: 1.25rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-maroon);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow);
}

.pest-item:hover {
    border-color: var(--accent-sage);
    background: linear-gradient(135deg, var(--bg-beige), white);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.2);
}

.qualifications,
.service-options,
.service-benefits-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.qualifications h3,
.service-options h3,
.service-benefits-section h3 {
    text-align: center;
    color: var(--primary-maroon);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.qual-grid,
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.qual-card,
.option-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-sage);
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.qual-card:hover,
.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.25);
    border-left-width: 8px;
}

.qual-card h4,
.option-card h4 {
    color: var(--primary-maroon);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.qual-card p,
.option-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

.benefits-list {
    max-width: 900px;
    margin: 2rem auto;
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.8;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-sage);
    font-weight: 900;
    font-size: 1.3rem;
}

.benefits-list li strong {
    color: var(--primary-maroon);
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--bg-beige), white);
    border-radius: 16px;
    box-shadow: 0 4px 30px var(--shadow);
}

.cta-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-maroon);
    font-size: 2rem;
}

/* Contact Page */
.contact-section {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--primary-maroon);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-methods {
    margin-top: 2.5rem;
}

.contact-method {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, white, var(--bg-beige));
    border-radius: 12px;
    border-left: 4px solid var(--primary-maroon);
    box-shadow: 0 3px 15px var(--shadow);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(128, 0, 0, 0.2);
}

.contact-method h4 {
    color: var(--primary-maroon);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.contact-link {
    color: var(--accent-sage);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-light-sage);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Contact Form */
.contact-form-container h3 {
    color: var(--primary-maroon);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-form {
    background: linear-gradient(135deg, white, var(--bg-beige));
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 25px var(--shadow);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--primary-maroon);
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-sage);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1.25rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background-color: #d1f2dd;
    color: #0f5132;
    border: 2px solid #a3cfbb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #842029;
    border: 2px solid #f5c2c7;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, var(--dark-maroon), #2a0000);
    color: white;
    text-align: center;
    padding: 3rem 0;
    border-top: 4px solid var(--primary-maroon);
}

footer p {
    margin: 0.75rem 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
        font-size: 0.95rem;
    }

    .hero-content h2 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-brand h1 {
        font-size: 1.35rem;
    }

    .nav-logo {
        height: 40px;
        padding: 6px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-content h2 {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .riverina-showcase {
        min-height: 600px;
        padding: 4rem 0;
        background-attachment: scroll;
    }

    .riverina-content h2 {
        font-size: 2.5rem;
    }

    .riverina-content p {
        font-size: 1.2rem;
    }

    .riverina-stats {
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem 2rem;
        min-width: 140px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .difference-grid,
    .testimonial-grid,
    .qual-grid,
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1.1rem;
    }

    .nav-logo {
        height: 35px;
        padding: 5px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .riverina-showcase {
        min-height: 550px;
        padding: 3rem 0;
    }

    .riverina-content {
        padding: 2rem;
    }

    .riverina-content h2 {
        font-size: 2rem;
    }

    .riverina-content p {
        font-size: 1.1rem;
    }

    .riverina-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 2rem;
        min-width: auto;
        width: 100%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.75rem;
    }

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