* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #3d2914;
    background-color: #f5f1e8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Pricing Services Bar */
.pricing-services-bar {
    background: linear-gradient(135deg, #ede6d3 0%, #f5f1e8 100%);
    padding: 50px 0;
    border-top: 4px solid #d2691e;
    border-bottom: 4px solid #6b8e23;
    box-shadow: 0 4px 15px rgba(61,41,20,0.1);
}

.pricing-services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-info-bar,
.services-info-bar {
    background: #f5f1e8;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(61,41,20,0.15);
    border: 2px solid #4a9b8e;
    text-align: center;
}

.pricing-info-bar h3,
.services-info-bar h3 {
    color: #d2691e;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.pricing-info-bar h3:after,
.services-info-bar h3:after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #4a9b8e;
    margin: 0.5rem auto;
    border-radius: 2px;
}

.pricing-info-bar {
    text-align: center;
}

.pricing-info-bar p {
    margin-bottom: 0.8rem;
    color: #3d2914;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem;
    background: rgba(74,155,142,0.1);
    border-radius: 8px;
    border-left: 4px solid #4a9b8e;
}

.services-info-bar ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.services-info-bar li {
    color: #3d2914;
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
    background: rgba(210,105,30,0.1);
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    border-radius: 8px;
    border-left: 4px solid #d2691e;
}

.services-info-bar li:before {
    content: "🐾";
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
}

.overnight-note {
    font-style: italic;
    color: #6b8e23;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(107,142,35,0.1);
    border-radius: 8px;
    border: 1px dashed #6b8e23;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f1e8 0%, #ede6d3 50%, #f5f1e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%234a9b8e" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23d2691e" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%236b8e23" opacity="0.1"/><circle cx="70" cy="10" r="1.2" fill="%234a9b8e" opacity="0.1"/><circle cx="10" cy="60" r="0.8" fill="%23d2691e" opacity="0.1"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
    background: rgba(245,241,232,0.8);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(61,41,20,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(74,155,142,0.3);
}

.hero-text {
    text-align: left;
    position: relative;
}

.hero-text:before {
    content: "🐾";
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 2rem;
    opacity: 0.3;
    color: #4a9b8e;
}

.hero-text h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: #3d2914;
    text-shadow: 2px 2px 4px rgba(61,41,20,0.1);
    position: relative;
}

.hero-text h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d2691e, #4a9b8e);
    margin: 0.5rem 0;
    border-radius: 2px;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #3d2914;
    line-height: 1.6;
}

.hero-text .quote {
    font-style: italic;
    color: #6b8e23;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(107,142,35,0.1);
    border-left: 4px solid #6b8e23;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.hero-text .quote:before {
    content: """;
    font-size: 3rem;
    color: #6b8e23;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
}

.hero-text .location {
    font-weight: 600;
    color: #3d2914;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.hero-text .location:before {
    content: "📍";
    margin-right: 0.5rem;
}

.hero-text .phone {
    font-size: 1.4rem;
    font-weight: bold;
    color: #4a9b8e;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(74,155,142,0.1);
    border-radius: 15px;
    text-align: center;
    border: 2px solid #4a9b8e;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text .phone:before {
    content: "📞";
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.hero-text .phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74,155,142,0.3);
}

.forms-button {
    display: inline-block;
    background: #d2691e;
    color: #f5f1e8;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid #d2691e;
    margin-top: 1rem;
}

.forms-button:hover {
    background: #f5f1e8;
    color: #d2691e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210,105,30,0.3);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(61,41,20,0.2);
    border: 5px solid #f5f1e8;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.cta-button {
    display: inline-block;
    background: #d2691e;
    color: #f5f1e8;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #b8621b;
}

/* Jackie Services Section */
.jackie-services {
    padding: 80px 0;
    background: #f5f1e8;
    width: 100%;
}

.jackie-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: none;
}

.jackie-service-card {
    padding: 3rem 2rem;
    text-align: center;
    background: #f5f1e8;
    border-right: 3px solid #4a9b8e;
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jackie-service-card:last-child {
    border-right: none;
}

.jackie-service-card:hover {
    background: #ede6d3;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(61,41,20,0.15);
}

.jackie-service-card h3 {
    color: #d2691e;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: bold;
}

.jackie-service-card p {
    color: #3d2914;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 350px;
    margin: 0 auto;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #f5f1e8;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #3d2914;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #ede6d3;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(61,41,20,0.1);
    border: 2px solid #4a9b8e;
    transition: transform 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(61,41,20,0.15);
}

.review-card:before {
    content: """;
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #d2691e;
    opacity: 0.3;
    font-family: serif;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.review-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #3d2914;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.reviewer {
    font-weight: bold;
    color: #6b8e23;
    text-align: right;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #3d2914;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: #f5f1e8;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(61,41,20,0.15);
    border: 3px solid #4a9b8e;
    position: relative;
}

.about-content:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #d2691e, #4a9b8e, #6b8e23);
    border-radius: 25px;
    z-index: -1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #3d2914;
    text-align: justify;
}

.about-text .motto {
    font-style: italic;
    font-size: 1.3rem;
    color: #6b8e23;
    text-align: center;
    font-weight: 600;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(107,142,35,0.1);
    border-radius: 15px;
    border: 2px dashed #6b8e23;
    position: relative;
}

.about-text .motto:before {
    content: "🐾";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.about-text .motto:after {
    content: "🐾";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #ede6d3;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #3d2914;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #3d2914;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3,
.pricing-info h3 {
    color: #d2691e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.pricing-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #ede6d3;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #3d2914;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #f5f1e8;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(61,41,20,0.1);
    border-left: 5px solid #d2691e;
    transition: transform 0.3s ease;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(61,41,20,0.15);
}

.faq-item:before {
    content: "❓";
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 2rem;
    background: #4a9b8e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(74,155,142,0.3);
}

.faq-item h3 {
    color: #3d2914;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
    padding-right: 2rem;
}

.faq-item p {
    color: #3d2914;
    line-height: 1.7;
    font-size: 1rem;
}

/* Footer */
footer {
    background: #3d2914;
    color: #f5f1e8;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .hero-text .quote {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .hero-text .phone {
        font-size: 1.2rem;
        padding: 0.8rem;
    }
    
    .about-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .about-text .motto {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .jackie-services-grid,
    .gallery-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 2rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
        padding-right: 1rem;
    }
    
    .jackie-service-card {
        border-right: none;
        border-bottom: 3px solid #4a9b8e;
        min-height: auto;
    }
    
    .jackie-service-card:last-child {
        border-bottom: none;
    }
    
    .pricing-services-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}