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

:root {
    --primary-green: #4a9d7e;
    --light-green: #e8f5f0;
    --dark-green: #2d6b54;
    --accent-green: #5cb88f;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gold: #ffd700;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-logo {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.1);
}

.brand-text {
    font-family: 'Allura', cursive;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

.nav-menu,
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a,
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-links a:hover {
    color: var(--primary-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a9d7e 0%, #2d6b54 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-decoration-2 {
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--text-light);
    border-radius: 24px;
    margin-bottom: 24px;
}

.hero-badge span {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--text-light);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--text-light);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    margin-top: 40px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
    opacity: 0.9;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-green) 0%, #f0f9f6 100%);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    max-height: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 157, 126, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-image svg {
    width: 120px;
    height: 120px;
    color: var(--primary-green);
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    position: relative;
    z-index: 1;
}

.image-placeholder-text {
    margin-top: 1.5rem;
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 157, 126, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-green);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-green) 0%, #f0f9f6 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.section-title-white {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(74, 157, 126, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.features-description {
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.features-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.features-description p:last-child {
    margin-bottom: 0;
}

/* Kitten Listings Section */
.kittens {
    padding: 5rem 0;
    background: white;
}

.filter-bar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--light-green);
    border-radius: 50px;
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary-green);
    outline: none;
}

.kitten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.kitten-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.kitten-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 157, 126, 0.2);
}

.kitten-image {
    width: 100%;
    height: 320px;
    background: var(--light-green);
    position: relative;
    overflow: hidden;
}

.kitten-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.kitten-image svg {
    width: 80px;
    height: 80px;
    color: var(--primary-green);
}

.kitten-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.kitten-info {
    padding: 1.5rem;
}

.kitten-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.kitten-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.kitten-detail {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.kitten-description {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.kitten-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.kitten-card .btn {
    width: 100%;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-images {
    display: grid;
    gap: 1rem;
}

.about-image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder svg {
    width: 100px;
    height: 100px;
    color: rgba(255, 255, 255, 0.5);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8f5f0 0%, #f0f9f6 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.stars {
    color: #fbbc05;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

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

.faq-item {
    background: white;
    border: 2px solid var(--light-green);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-green);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-icon {
    width: 30px;
    height: 30px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.faq-toggle {
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: 300;
    transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 4.5rem;
}

.faq-answer p {
    color: var(--gray-medium);
    line-height: 1.8;
}

/* Kitten Care Section */
.kitten-care {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8f5f0 0%, #f0f9f6 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-top: -1rem;
    margin-bottom: 3rem;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.care-category {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.care-category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-green);
}

.care-category-title svg {
    width: 32px;
    height: 32px;
    color: var(--primary-green);
}

.care-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.care-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.care-icon {
    width: 32px;
    height: 32px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.care-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary-green);
    stroke-width: 3;
}

.care-item-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.care-item-content p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.care-cta {
    background: var(--primary-green);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.care-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.care-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.care-cta .btn {
    background: white;
    color: var(--primary-green);
}

.care-cta .btn:hover {
    background: var(--light-green);
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu,
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active,
    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-image {
        min-height: 300px;
        max-height: 350px;
    }

    .hero-decoration-1 {
        width: 300px;
        height: 300px;
        top: -50px;
        right: -50px;
    }

    .hero-decoration-2 {
        width: 350px;
        height: 350px;
        bottom: -100px;
        left: -100px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile - Stack image on top */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-image {
        min-height: 250px;
        max-height: 300px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        padding: 14px 24px;
    }

    .hero-stats {
        gap: 24px;
        margin-top: 32px;
    }

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

    .hero-decoration-1,
    .hero-decoration-2 {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .hero-right {
        padding: 1.5rem 1rem;
    }

    .hero-image {
        min-height: 200px;
        max-height: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .kitten-grid {
        grid-template-columns: 1fr;
    }

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

    .care-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .care-category {
        padding: 2rem;
    }

    .care-category-title {
        font-size: 1.5rem;
    }

    .care-cta {
        padding: 2rem;
    }

    .care-cta h3 {
        font-size: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Service Areas Section */
.service-areas {
    background: linear-gradient(135deg, #e8f5f0 0%, #ffffff 100%);
    padding: 3rem 0;
}

.state-btn {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.state-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(74, 157, 126, 0.3);
    border-color: #4a9d7e;
    background: #f8fffe;
}

.state-btn span {
    color: #4a9d7e;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.state-btn:hover span {
    color: #2d6b54;
}

.state-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .state-buttons {
        flex-direction: column;
        align-items: center;
    }

    .state-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

