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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --white: #ffffff;
    --border-color: #e0ddd8;
    --success-color: #5a8f5a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

.nav-brand img:hover {
    transform: scale(1.05);
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-menu .cta-nav {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    border: none;
}

.nav-menu .cta-nav:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #234a61;
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.hero-cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 4rem 0;
}

.intro {
    background-color: var(--bg-light);
}

.intro p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

/* Content with Image Layout */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

.text-content {
    padding: 1rem;
}

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

.text-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.text-content ul {
    list-style: none;
    padding-left: 0;
}

.text-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.text-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.image-content {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.image-content img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 400px;
    max-height: 600px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Kittens Preview */
.kittens-preview {
    background-color: var(--bg-light);
    text-align: center;
}

.kittens-preview p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* State Grid */
.state-pages {
    background-color: var(--white);
}

.state-pages p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

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

.state-btn {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.state-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(44, 95, 125, 0.3);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.adoption-process {
    background-color: var(--bg-light);
    text-align: center;
}

/* Breed Info */
.breed-info {
    background-color: var(--white);
}

.breed-info ul {
    max-width: 800px;
    margin: 2rem auto;
    list-style-position: inside;
}

.breed-info li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.breed-info p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.breed-info h3 {
    text-align: center;
    color: var(--primary-color);
    margin-top: 2rem;
}

/* Health & Care */
.health-care {
    background-color: var(--bg-light);
}

.health-care ul {
    max-width: 800px;
    margin: 2rem auto;
    list-style-position: inside;
}

.health-care li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.health-care p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.health-care {
    text-align: center;
}

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

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

.testimonial {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial .author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* FAQ Preview */
.faq-preview {
    background-color: var(--bg-light);
    text-align: center;
}

.faq-item {
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.final-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.final-cta .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: #ccc;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

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

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

    .nav-toggle {
        display: flex;
    }

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

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

    h2 {
        font-size: 1.8rem;
    }

    .state-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-with-image.reverse {
        direction: ltr;
    }

    .image-content img {
        min-height: 300px;
        max-height: 400px;
    }

    .text-content {
        padding: 0;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Page Sections */
.our-story,
.why-tonkinese,
.commitment {
    background-color: var(--white);
}

.our-story p,
.why-tonkinese p,
.commitment p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
}

.why-tonkinese ul,
.commitment ul {
    max-width: 900px;
    margin: 2rem auto;
    list-style-position: inside;
}

.why-tonkinese li,
.commitment li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.philosophy {
    background-color: var(--bg-light);
}

.philosophy p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

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

.philosophy-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.philosophy-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.about-cta h2 {
    color: var(--white);
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Available Kittens Page */
.kittens-intro {
    background-color: var(--bg-light);
    text-align: center;
}

.kittens-intro p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
}

.kittens-grid-section {
    background-color: var(--white);
}

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

.kitten-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.kitten-card:hover {
    transform: translateY(-5px);
}

.kitten-image-placeholder {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.kitten-info {
    padding: 1.5rem;
}

.kitten-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.kitten-info p {
    margin-bottom: 0.5rem;
}

.kitten-description {
    margin: 1rem 0 1.5rem;
    font-style: italic;
    color: var(--text-light);
}

.status-available {
    color: var(--success-color);
    font-weight: 600;
}

.status-reserved {
    color: var(--secondary-color);
    font-weight: 600;
}

.status-adopted {
    color: var(--text-light);
    font-weight: 600;
}

/* Kitten Gallery */
.kitten-gallery {
    background-color: var(--white);
    padding: 4rem 0;
}

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

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

.kitten-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.kitten-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.kitten-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kitten-card:hover .kitten-image img {
    transform: scale(1.1);
}

.kitten-info {
    padding: 1.5rem;
    text-align: center;
}

.kitten-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.kitten-info p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.whats-included {
    background-color: var(--bg-light);
}

.whats-included p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

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

.included-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.included-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-info {
    background-color: var(--white);
    text-align: center;
}

.pricing-info p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
}

.pricing-info a {
    font-weight: 600;
}

.reservation-process {
    background-color: var(--bg-light);
    text-align: center;
}

.delivery-info {
    background-color: var(--white);
}

.delivery-info p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
}

.delivery-info ul {
    max-width: 800px;
    margin: 2rem auto;
    list-style-position: inside;
}

.delivery-info li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.kittens-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.kittens-cta h2 {
    color: var(--white);
}

.kittens-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* State Landing Pages */
.state-intro,
.state-kittens,
.state-breed-info,
.state-health {
    background-color: var(--white);
}

.state-intro p,
.state-kittens p,
.state-breed-info p,
.state-health p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
}

.state-kittens ul,
.state-breed-info ul,
.state-health ul {
    max-width: 800px;
    margin: 2rem auto;
    list-style-position: inside;
}

.state-kittens li,
.state-breed-info li,
.state-health li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.state-why-choose {
    background-color: var(--bg-light);
}

.texas-cities,
.state-adoption,
.state-pricing {
    background-color: var(--bg-light);
    text-align: center;
}

.texas-cities p,
.state-pricing p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem auto;
    max-width: 900px;
}

.city {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}

.state-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.state-cta h2 {
    color: var(--white);
}

.state-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-intro {
    background-color: var(--bg-light);
    text-align: center;
}

.contact-intro p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
}

.contact-form-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form h2,
.contact-info h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    margin-bottom: 0.3rem;
}

.info-item a {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-faq {
    background-color: var(--bg-light);
    text-align: center;
}

.contact-faq p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
}

.contact-faq ul {
    max-width: 600px;
    margin: 2rem auto;
    list-style-position: inside;
}

.contact-faq li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

/* Kitten Care Page */
.care-intro {
    background-color: var(--bg-light);
    text-align: center;
}

.care-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.care-section {
    padding: 4rem 0;
}

.care-section:nth-child(even) {
    background-color: var(--bg-light);
}

.care-tips {
    max-width: 900px;
    margin: 0 auto;
}

.care-tips h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.care-tips p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.care-tips ul {
    list-style: none;
    padding-left: 0;
}

.care-tips ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.care-tips ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.care-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.care-cta h2 {
    color: var(--white);
}

.care-cta p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* FAQ Page */
.faq-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-light);
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(44, 95, 125, 0.05);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.faq-cta h2 {
    color: var(--white);
}

.faq-cta p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Adoption Process Page */
.adoption-intro {
    background-color: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

.adoption-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.adoption-steps-detailed {
    padding: 4rem 0;
}

.step-detailed {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number-large {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.step-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.step-content a:hover {
    text-decoration: underline;
}

.delivery-options {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

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

.delivery-option {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.delivery-option h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.delivery-option p {
    line-height: 1.7;
}

.adoption-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.adoption-cta h2 {
    color: var(--white);
}

.adoption-cta p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Blog Page */
.blog-intro {
    background-color: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

.blog-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Featured Blog Post */
.blog-featured {
    padding: 4rem 0;
    background-color: var(--white);
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.featured-image {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image::after {
    content: "📰";
    font-size: 8rem;
    opacity: 0.3;
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content {
    padding: 3rem;
}

.featured-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 1.3;
}

.featured-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-date {
    color: var(--text-color);
    opacity: 0.7;
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
    background-color: rgba(44, 95, 125, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

/* Blog Posts Grid */
.blog-posts {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

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

.blog-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.blog-card-image {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image::after {
    content: "📝";
    font-size: 4rem;
    opacity: 0.3;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-card-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.5rem;
}

.blog-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.blog-cta h2 {
    color: var(--white);
}

.blog-cta p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Legal Pages (Privacy Policy & Terms) */
.legal-content {
    padding: 4rem 0;
    background-color: var(--white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h3 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-text a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .kitten-image {
        height: 250px;
    }

    .step-detailed {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

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

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 250px;
    }

    .featured-content {
        padding: 2rem;
    }

    .featured-content h2 {
        font-size: 1.5rem;
    }

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

    .blog-card-image {
        height: 180px;
    }
}



/* Blog Article Page */
.blog-article {
    padding: 4rem 0;
    background-color: var(--white);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content h3 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.article-content ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.article-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.article-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.article-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .article-footer {
        flex-direction: column;
    }

    .article-footer .btn {
        width: 100%;
        text-align: center;
    }
}


