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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #F4A460;
    --dark-color: #2C1810;
    --light-color: #FFF8F0;
    --gray-color: #6B6B6B;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --success-color: #28a745;
    --warning-color: #ffc107;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

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

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

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

.btn-primary-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: background-color 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-white {
    background-image: url('images/hero.jpeg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: var(--white);
    padding: 6rem 0 8rem 0;
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.hero-white .hero-title {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-white .hero-subtitle {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.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-white .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
}

/* Introduction Section */
.intro-section {
    background-color: var(--white);
}

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

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

.intro-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Why Choose Section */
.why-choose-section {
    background-color: var(--white);
}

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

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

/* Puppies Preview Section */
.puppies-preview-section {
    background-color: var(--white);
}

.puppies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.puppy-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.puppy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.puppy-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.puppy-info {
    padding: 1.5rem;
}

.puppy-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.puppy-details {
    margin-bottom: 1rem;
}

.puppy-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.puppy-detail strong {
    color: var(--dark-color);
}

.puppy-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.status-available {
    background-color: #d4edda;
    color: #155724;
}

.status-reserved {
    background-color: #fff3cd;
    color: #856404;
}

.status-adopted {
    background-color: #f8d7da;
    color: #721c24;
}

.adopt-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    box-shadow: var(--shadow);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--dark-color);
}

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

/* CTA Section */
.cta-section {
    background: var(--white);
    color: var(--dark-color);
    text-align: center;
    border: 1px solid #f0f0f0;
}

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

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

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

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

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

.footer-col p {
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 69, 19, 0.2);
}

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

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        display: none;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

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

    .section-header h2 {
        font-size: 2rem;
    }

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

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

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

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

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

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

    /* Contact Page - Single Column on Mobile */
    .contact-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    /* Show contact details first */
    .contact-info {
        order: 1;
    }

    /* Show form second (right after Response Time) */
    .contact-form-container {
        order: 2;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo span {
        font-size: 1rem;
    }

    .hero {
        height: 500px;
    }

    .hero-white {
        min-height: 400px;
        background-size: cover;
    }

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

    .section {
        padding: 3rem 0;
    }
}

/* Page Header */
.page-header {
    background: var(--white) url('../images/logo.jpeg') center center no-repeat;
    background-size: 300px;
    color: var(--primary-color);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--light-color);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.page-header p {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

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

.content-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.philosophy-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.philosophy-card p {
    line-height: 1.7;
    color: var(--gray-color);
}

/* CTA Box */
.cta-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-box p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

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

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

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    position: relative;
    border: 1px solid #f0f0f0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

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

.process-step p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* FAQ Styles */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
}

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

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: var(--white);
}

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

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

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

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

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-link:hover {
    color: var(--secondary-color);
}

/* Article Styles */
.article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 1.05rem;
}

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

.article-content h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

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

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

.article-content li {
    margin-bottom: 0.5rem;
}

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

    .page-header {
        padding: 3rem 0;
        background-size: auto, 200px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

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

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

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

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.contact-info p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    color: var(--gray-color);
}

.trust-message {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    margin-top: 2rem;
}

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

.trust-message p {
    margin: 0;
    line-height: 1.8;
}

.contact-form-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
}

.contact-form {
    margin-top: 1.5rem;
}

/* Parents Grid */
.parents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.parent-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parent-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.parent-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.parent-info {
    padding: 1.5rem;
}

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

.parent-details {
    margin: 0.5rem 0;
    color: var(--gray-color);
}

.parent-bio {
    margin-top: 1rem;
    line-height: 1.6;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.review-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    box-shadow: var(--shadow);
}

.review-rating {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

/* Rules List */
.rules-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.rules-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.rules-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.rules-section {
    margin: 2rem 0;
}

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

/* Stud Grid */
.stud-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stud-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.stud-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.stud-info {
    padding: 1.5rem;
}

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

.stud-info p {
    margin: 0.5rem 0;
}

/* Delivery Options */
.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.delivery-card {
    background-color: var(--white);
    border: 2px solid var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.delivery-card.featured {
    border-color: var(--primary-color);
    background-color: var(--white);
}

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

.delivery-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.delivery-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.delivery-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.delivery-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background-color: var(--white);
    transform: scale(1.05);
}

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

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Alert Box */
.alert-box {
    background-color: #fff3cd;
    border: 2px solid var(--warning-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.alert-box h4 {
    color: #856404;
    margin-bottom: 1rem;
}

.alert-box p {
    color: #856404;
    margin-bottom: 0.5rem;
}

.alert-box ul {
    margin-top: 1rem;
    color: #856404;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.content-wrapper p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Color Guide */
.color-guide {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    margin: 2rem 0;
}

.color-guide h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.color-guide h4:first-child {
    margin-top: 0;
}

/* States Grid */
.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.state-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.state-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.state-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.state-card p {
    line-height: 1.6;
    color: var(--gray-color);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    line-height: 1.8;
    margin: 0;
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

/* Puppy Profile Layout */
.puppy-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.puppy-profile-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.puppy-profile-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.puppy-profile-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.puppy-name-header {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.puppy-name-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: 2px;
}

.puppy-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.spec-item {
    font-size: 1rem;
    color: var(--dark-color);
}

.spec-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.puppy-price {
    background-color: var(--light-color);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.puppy-price h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.puppy-personality h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.personality-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.personality-tags .tag {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--accent-color);
}

.puppy-about h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.puppy-about p {
    line-height: 1.8;
    color: var(--dark-color);
}

.puppy-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.puppy-actions .btn {
    flex: 1;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive Puppy Profile */
@media (max-width: 968px) {
    .puppy-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .puppy-name-header h2 {
        font-size: 2rem;
    }

    .puppy-specs {
        grid-template-columns: 1fr;
    }

    .puppy-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .puppy-profile {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .puppy-name-header h2 {
        font-size: 1.75rem;
    }

    .puppy-price h3 {
        font-size: 1.5rem;
    }

    .personality-tags .tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Featured Puppies Section */
.featured-puppies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.featured-puppy-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-puppy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.featured-puppy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-puppy-info {
    padding: 1.5rem;
}

.featured-puppy-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.featured-puppy-details {
    margin-bottom: 1rem;
}

.featured-puppy-details p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.featured-puppy-details strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

/* Stud Gallery Section */
.stud-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stud-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stud-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stud-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.stud-card:hover .stud-image img {
    transform: scale(1.05);
}

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

    .stud-image {
        height: 300px;
    }
}

/* Offspring Gallery Section */
.offspring-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.offspring-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offspring-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offspring-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.offspring-card:hover .offspring-image img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .offspring-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .offspring-image {
        height: 300px;
    }
}

/* Customer Reviews Section */
.reviews-container {
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--white);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-stars {
    font-size: 1.2rem;
    color: #FFB800;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
}

.review-location {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-content {
    line-height: 1.8;
}

.review-content p {
    color: var(--dark-color);
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

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

@media (max-width: 768px) {
    .review-card {
        padding: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-stars {
        font-size: 1rem;
    }
}

/* ===================================
   Review Submission Form Styles
   =================================== */

.submit-review-section {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.review-form input[type="text"],
.review-form input[type="email"],
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
}

.review-form input[type="text"]:focus,
.review-form input[type="email"]:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.review-form textarea {
    resize: vertical;
    min-height: 150px;
}

.review-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B4513' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    cursor: pointer;
    color: #D1D5DB;
    transition: color 0.2s ease, transform 0.2s ease;
    margin-bottom: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #FFB800;
    transform: scale(1.1);
}

.star-rating input[type="radio"]:checked ~ label {
    color: #FFB800;
}

/* Mobile Responsive for Review Form */
@media (max-width: 768px) {
    .submit-review-section {
        padding: 2rem 1.5rem !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .star-rating {
        font-size: 2rem;
        gap: 0.3rem;
    }

    .review-form input[type="text"],
    .review-form input[type="email"],
    .review-form select,
    .review-form textarea {
        font-size: 0.95rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Mobile responsiveness for scroll button */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
    }
}
