:root {
    --primary-green: #0f5132;
    --accent-green: #198754;
    --hover-yellow: #ffd54f;
    --text-dark: #333;
    --bg-white: #ffffff;
    --bright-blue: #0000ff;
    --bright-magenta: #ff00ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Subtle Paw Print Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 100 100'%3E%3Cpath d='M30,40c-5.5,0-10,4.5-10,10s4.5,10,10,10s10-4.5,10-10S35.5,40,30,40z M70,40c-5.5,0-10,4.5-10,10s4.5,10,10,10s10-4.5,10-10S75.5,40,70,40z M50,10c-5.5,0-10,4.5-10,10s4.5,10,10,10s10-4.5,10-10S55.5,10,50,10z M50,60c-11,0-20,9-20,20s9,20,20,20s20-9,20-20S61,60,50,60z' fill='%230f5132'/%3E%3C/svg%3E");
    background-size: 100px 100px;
}

/* Navigation */
nav {
    background: var(--primary-green);
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 180px;
    width: auto;
    cursor: pointer;
    margin-bottom: -40px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
}

.nav-links a {
    background: none;
    border: none;
    color: white;
    margin-left: 15px;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--hover-yellow);
}

/* Content Sections */
.main-content {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 0.4s ease-in-out;
}

h1, h2 {
    color: var(--primary-green);
    margin-bottom: 20px;
    text-align: center;
}

h3 {
    color: var(--accent-green);
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.policy-box {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* Home Page Specific Layout Styling */
.home-container {
    text-align: center;
}

.home-main-title {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-bottom: 25px;
}

.hero-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-badge {
    max-width: 160px;
    height: auto;
    flex-shrink: 0;
}

.hero-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.4;
    color: #333;
}

.hero-text p {
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
    font-size: 18px;
}

.features-list li {
    margin-bottom: 8px;
}

.checkmark {
    color: #7b2cbf;
    font-weight: bold;
    margin-right: 5px;
}

/* Ultimate Yard Clean Promo Area */
.promo-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.promo-text {
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    font-size: 38px;
    line-height: 1.1;
    text-align: center;
}

.text-blue { color: var(--bright-blue); }
.text-green { color: #00cc00; }
.text-magenta { color: var(--bright-magenta); }

.promo-badge {
    max-width: 150px;
    height: auto;
}

/* Contact Details & Lower Header */

/* Form */
.contact-section {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.contact-intro > * + * {
  margin-top: 1rem;
}
.contact-details {
    font-size: 22px;
    font-weight: bold;
    margin: 20px 0;
}

.contact-details a {
    text-decoration: none;
}

.email-link { color: var(--bright-blue); }
.phone-link { color: var(--bright-magenta); }

.contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.contact-description {
  color: rgb(107 114 128);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

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

.form-label {
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

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

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background-color: #3124ca;
  color: #fff;
  padding: 13px 5px;
  border-radius: 0.375rem;
}
/*form end*/

.disclaimer-text {
    font-size: 11px;
    color: #000;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.payment-section {
    margin-top: 25px;
}

.payment-img {
    max-width: 392px;
    width: 100%;
    height: auto;
    margin-top: 15px;
}

/* Services & Prices Custom Grid Styling */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.price-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.subscription-flex {
    display: flex;
    gap: 20px;
}

.sub-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--accent-green);
    border-radius: 6px;
    padding: 20px;
}

.sub-card h3 {
    margin-top: 0;
    text-align: center;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-weight: bold;
}

.price-list li span:last-child {
    color: var(--primary-green);
}

.service-note {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

.addon-highlight {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 10px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.info-highlight-box {
    background: #eff6ff;
    border-left: 4px solid var(--bright-blue);
    padding: 15px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 15px;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 20px auto;
}

input, textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    width: 100%;
}

.submit-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

.submit-btn:hover {
    background: var(--accent-green);
}

/* Grass and Footer */
.grass-footer {
    width: 100%;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,120 L1200,120 L1200,0 C1150,50 1100,20 1050,60 C1000,10 950,40 900,10 C850,50 800,20 750,60 C700,10 650,40 600,10 C550,50 500,20 450,60 C400,10 350,40 300,10 C250,50 200,20 150,60 C100,10 50,40 0,0 Z' fill='%230f5132'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: contain;
}

footer {
    background: var(--primary-green);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

ul { margin-left: 20px; margin-bottom: 10px; }
li { margin-bottom: 5px; }

/* Responsive Mobile Layout Fixes */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
    }
    .nav-logo {
        height: 120px;
        margin-bottom: 0;
    }
    .nav-links {
        margin-top: 10px;
        margin-bottom: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links a {
        margin: 5px;
        font-size: 12px;
    }
    .hero-layout {
        flex-direction: column;
    }
    .hero-badge {
        order: 2;
    }
    .hero-text {
        order: 1;
    }
    .promo-text {
        font-size: 28px;
    }
    .subscription-flex {
        flex-direction: column;
    }
}
