/* General Styles */
:root {
    --primary-color: #8B0000; /* Dark red/bordeaux */
    --primary-dark: #6B0000;
    --primary-light: #A52A2A;
    --secondary-color: #F5F5F5;
    --text-color: #333333;
    --light-text: #FFFFFF;
    --border-color: #DDDDDD;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.button-hero {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button-hero:hover {
    background-color: var(--primary-dark);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.boxed-button3 {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.boxed-button3:hover {
    background-color: var(--primary-dark);
    color: var(--light-text);
}

/* Hero Banner */
.hero-banner {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.hero-banner__content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-banner__content h4 {
    color: var(--primary-light);
    margin-bottom: 15px;
}

.hero-banner__content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Pet Care Section */
.pet_care_section {
    padding: 80px 0;
}

.pet_content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pet_content h3 span {
    color: var(--primary-color);
}

.pet_content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.main_title {
    text-align: center;
    margin-bottom: 50px;
}

.main_title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-item {
    background: var(--light-text);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.pricing-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.pricing-item.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.pricing-item.featured:before {
    content: "POPULAR";
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--light-text);
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-header h1 span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-body {
    padding: 30px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.pricing-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--text-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.pricing-btn:hover {
    background-color: var(--primary-light);
    color: var(--light-text);
}

.pricing-btn.featured-btn {
    background-color: var(--primary-color);
}

.pricing-btn.featured-btn:hover {
    background-color: var(--primary-dark);
}

/* Feature Showcase */
.feature-showcase-section {
    padding: 80px 0;
}

.feature-showcase .main-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.feature-showcase ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-showcase ul li {
    padding: 20px;
    background: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.feature-showcase ul li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

/* Employee/Testimonials Section */
.employee-area {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.section-top h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.single-slide {
    background: var(--light-text);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 20px;
}

.slide-img {
    flex: 0 0 40%;
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.employee1 {
    background-image: url('../media/1.webp');
}

.employee2 {
    background-image: url('../media/2.webp');
}

.hover-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.slide-img:hover .hover-state {
    opacity: 1;
}

.hover-text h3 {
    color: var(--light-text);
    margin-bottom: 10px;
}

.hover-text h5 {
    color: var(--light-text);
    font-weight: 400;
}

.slide-text {
    flex: 0 0 60%;
    padding: 30px;
}

.slide-text .bi-quote {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq_area {
    padding: 80px 0;
}

.section_title h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.single_faq {
    background: var(--light-text);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq_header {
    padding: 20px 30px;
    background: var(--secondary-color);
    cursor: pointer;
    position: relative;
}

.faq_header h4 {
    margin: 0;
    font-weight: 600;
}

.faq_header:after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
}

.faq_header.active:after {
    content: "-";
}

.faq_content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq_content.show {
    padding: 20px 30px;
    max-height: 500px;
}

/* Contact Section */
.site-section {
    padding: 80px 0;
}

#contact-section .text-black {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 2.2rem;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 0, 0, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.font-weight-bold {
    font-weight: 700;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Privacy Policy & Terms */
.privacy-policy-section,
.terms-section {
    padding: 80px 0;
}

.privacy-policy-section h1,
.terms-section h1 {
    color: var(--primary-color);
    font-weight: 700;
}

.privacy-policy-section h2,
.terms-section h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content,
.terms-content {
    background: var(--light-text);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Thank You Section */
.thank-you-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.thank-you-content h1 {
    color: var(--primary-color);
    font-weight: 700;
}

/* Footer */
.site-footer {
    background: var(--text-color);
    color: var(--light-text);
    padding: 60px 0 30px;
}

.site-footer h5 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-weight: 600;
}

.pet_image img {
    width: 100%;
}

.site-footer ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer ul li a:hover {
    color: var(--light-text);
    padding-left: 5px;
}

.copyright {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    color: var(--light-text);
    padding: 20px 0;
    display: none;
    z-index: 1000;
}

.cookie-consent p {
    margin: 0;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
}

.why-choose-us .section-title {
    color: var(--primary-color);
}

.why-choose-us .feature-box {
    transition: all 0.3s ease;
}

.why-choose-us .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-choose-us .feature-icon {
    color: var(--primary-color);
}

.why-choose-us h4 {
    color: var(--primary-color);
    margin: 20px 0 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(139, 0, 0, 0.9), rgba(139, 0, 0, 0.9)), url('../media/hero.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

.cta-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section .btn-light {
    background-color: var(--light-text);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border: none;
}

.cta-section .btn-light:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner__content h1 {
        font-size: 2rem;
    }
    
    .main_title h2,
    .section-top h2,
    .section_title h3 {
        font-size: 1.8rem;
    }
    
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .slide-img,
    .slide-text {
        flex: 0 0 100%;
    }
    
    .slide-img {
        min-height: 250px;
    }
    
    .cta-section .section-title {
        font-size: 2rem;
    }
}

/* Animation for SVG icons */
.bi {
    transition: transform 0.3s ease;
}

.bi:hover {
    transform: scale(1.1);
}