/* Root Variables */
/* 🌟 Updated Root Variables */
:root {
    --primary-color: #1E1F26;            /* Rich dark background */
    --secondary-color: #292B36;          /* Section contrast background */
    --accent-color: #FFAD60;             /* Warm peachy-golden (for buttons, highlights) */
    --highlight-color: #FFE38E;          /* Light gold - less harsh than #FFD700 */
    --soft-white: #F2F2F2;               /* Slightly soft white for text */
    --text-muted: #B0B3BA;               /* Muted text color for secondary text */
    --border-color: #3A3C47;
    --success-color: #4DD4AC;            /* Soft green */
    --warning-color: #FFC773;            /* Warm yellow-orange */
    --error-color: #FF6B6B;              /* Soft red */
    --section-padding: 100px 0;
    --border-radius: 16px;
    --box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease-in-out;
}


/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--soft-white); /* Use the new soft white for text */
    background-color: var(--primary-color); /* This makes the background dark */
    overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.text-golden {
    color: var(--golden-color);
}

.bg-dark-alt {
    background-color: var(--secondary-color);
}

.section-padding {
    padding: var(--section-padding);
    background: #292B36;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader-content {
    text-align: center;
}

.paw-print {
    font-size: 3rem;
    color: var(--golden-color);
    animation: bounce 2s infinite;
    margin-bottom: 1rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Navigation */
.navbar {
    background: rgba(44, 47, 51, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--primary-color);
    box-shadow: var(--box-shadow);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--golden-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--golden-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}
/* 🌟 Golden Gradient Button */
.btn-golden {
    background: linear-gradient(135deg, var(--accent-color), #FFA94D);
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 173, 96, 0.2);
}

.btn-golden:hover {
    background: linear-gradient(135deg, #FFA94D, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 173, 96, 0.35);
    color: var(--primary-color);
}


/* 🌟 Golden Outline Button */
.btn-outline-golden {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-golden:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}


/* 🌟 Light Outline Button (White) */
.btn-outline-light {
    border: 2px solid var(--soft-white);
    color: var(--soft-white);
    background: transparent;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-light:hover {
    background: var(--soft-white);
    color: var(--primary-color);
}


/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -2;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 250%;
    height: 250%;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='paw' x='0' y='0' width='50' height='50' patternUnits='userSpaceOnUse'><circle cx='10' cy='10' r='3' fill='%23FFD700' opacity='0.1'/><circle cx='20' cy='5' r='2' fill='%23FFD700' opacity='0.1'/><circle cx='30' cy='10' r='2' fill='%23FFD700' opacity='0.1'/><ellipse cx='20' cy='20' rx='8' ry='6' fill='%23FFD700' opacity='0.1'/></pattern></defs><rect width='100' height='100' fill='url(%23paw)'/></svg>");
    animation: movePaws 90s linear infinite, pulseGlow 6s ease-in-out infinite, slowRotate 90s linear infinite;
    z-index: -1;
    opacity: 0.22;
    filter: brightness(1);
    transform-origin: center center;
}

/* Slow diagonal movement */
@keyframes movePaws {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(-40%, -40%) rotate(0deg);
    }
}

/* Gentle glow pulse effect */
@keyframes pulseGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

/* Very slow rotation for organic feel */
@keyframes slowRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-divider .shape-fill {
    fill: var(--secondary-color);
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* Cards */
.animal-card,
.product-card,
.testimonial-card,
.team-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.animal-card:hover,
.product-card:hover,
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.animal-image,
.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.animal-image img,
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.animal-card:hover .animal-image img,
.product-card:hover .product-image img {
    transform: scale(1.1);
}

.animal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 47, 51, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.animal-card:hover .animal-overlay {
    opacity: 1;
}

.animal-badge,
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--golden-color);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.animal-info,
.product-info {
    padding: 1.5rem;
}

.animal-info h4,
.product-info h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.animal-type,
.product-description {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.animal-age {
    color: var(--golden-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.animal-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.animal-tags span{
    color: #F2F2F2;

}

.tag {
    background: var(--golden-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--golden-color);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 0.5rem;
}

/* Filter Section */
.filter-section {
    padding: 30px 0;
    background: var(--secondary-color);
}

.filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--white);
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
/* 🔘 Filter Button */
.filter-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--soft-white);
    padding: 8px 20px;
    border-radius: 25px;
    transition: var(--transition);
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    letter-spacing: 0.5px;
}

/* ✨ Hover & Active State */
.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);        /* Softer golden-peach */
    border-color: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 5px 18px rgba(255, 173, 96, 0.25);
    transform: translateY(-2px);
}


/* Feature Cards */
.feature-card,
.mission-card {
    text-align: center;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon,
.mission-icon {
    font-size: 3rem;
    color: var(--golden-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h4,
.mission-card h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p,
.mission-card p {
    color: var(--text-light);
}

/* Step Cards */
.step-card {
    position: relative;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--golden-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--golden-color);
    margin: 2rem 0 1.5rem;
}

.step-card h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.step-card p {
    color: var(--text-light);
}

/* Tip Cards */
.tip-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.tip-icon {
    font-size: 2.5rem;
    color: var(--golden-color);
    margin-top: 0.5rem;
}

.tip-content h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.tip-content p {
    color: var(--text-light);
    margin: 0;
}

/* Newsletter Section */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto 1rem;
}

.newsletter-form .input-group {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
}

.newsletter-form .btn {
    border: none;
    padding: 15px 25px;
}

.newsletter-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Product Purchase Page */
.product-purchase-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: var(--primary-color);
}

.product-showcase {
    position: sticky;
    top: 120px;
}

.product-image-main {
    position: relative;
    margin-bottom: 1rem;
}

.product-image-main img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.product-thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--golden-color);
}

.purchase-form-container {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.product-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--golden-color);
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--success-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.form-title {
    color: var(--golden-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.section-subtitle {
    color: var(--white);
    margin-bottom: 1rem;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    max-width: 150px;
}

.quantity-btn {
    background: var(--primary-color);
    border: 2px solid var(--border-color);
    color: var(--golden-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--golden-color);
    color: var(--primary-color);
}

.quantity-btn.minus {
    border-radius: 8px 0 0 8px;
}

.quantity-btn.plus {
    border-radius: 0 8px 8px 0;
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-left: none;
    border-right: none;
    background: var(--secondary-color);
    color: var(--white);
}

.quantity-input:focus {
    outline: none;
    border-color: var(--golden-color);
}

.size-options .form-check {
    background: var(--primary-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.size-options .form-check:hover {
    border-color: var(--golden-color);
}

.size-options .form-check-input:checked + .form-check-label {
    color: var(--golden-color);
}

.order-summary {
    background: var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.order-summary h4 {
    color: var(--golden-color);
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.security-badges {
    color: var(--text-light);
}

/* Testimonials */
.testimonial-card {
    padding: 2rem;
    text-align: center;
    background: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    margin: 0;
    color: var(--white);
}

.testimonial-author span {
    color: var(--golden-color);
    font-size: 0.9rem;
}
/* 🌟 CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    background-color: var(--secondary-color);
}

/* 🎨 Gradient Background Layer */
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), #FFA94D);
    opacity: 0.15; /* Soft background feel */
    z-index: -1;
}

/* 🧡 CTA Main Title */
.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--soft-white); /* Use soft white on dark background */
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* 📢 CTA Subtitle */
.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted); /* Slightly muted for subtleness */
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* 🖱 CTA Buttons Wrapper */
.cta-buttons .btn {
    margin: 0.5rem;
    font-size: 1rem;
}


/* Animal Single Page */
.animal-hero {
    padding: 150px 0 80px;
    background: var(--secondary-color);
}

.animal-hero-image {
    position: relative;
}

.animal-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--golden-color);
    color: var(--primary-color);
    padding: 15px;
    border-radius: 50%;
    font-size: 1.5rem;
}

.animal-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.animal-breed {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.status-badge {
    background: var(--success-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.animal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.animal-quick-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.animal-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.details-card,
.sidebar-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.details-card h3,
.sidebar-card h4 {
    margin-bottom: 1.5rem;
    color: var(--golden-color);
}

.details-card h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.traits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.trait-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--secondary-color);
    border-radius: 8px;
}

.trait-item i {
    color: var(--golden-color);
}

.care-list {
    list-style: none;
    padding: 0;
}

.care-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.care-list li::before {
    content: '•';
    color: var(--golden-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.fact-list {
    list-style: none;
    padding: 0;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.fact-item strong {
    color: var(--golden-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--golden-color);
}

.emergency-card {
    background: linear-gradient(135deg, var(--error-color), #A52A2A);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.emergency-card h4 {
    margin-bottom: 1rem;
}

/* Forms */
.form-control {
    background: var(--secondary-color);
    border: 2px solid var(--border-color);
    color: var(--white);
    border-radius: 8px;
    padding: 12px 15px;
    transition: var(--transition);
}

.form-control:focus {
    background: var(--secondary-color);
    border-color: var(--golden-color);
    color: var(--white);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.form-control::placeholder {
    color: var(--text-light);
}

.form-label {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--golden-color);
    border-color: var(--golden-color);
}

.form-check-label {
    color: var(--text-light);
}

/* Modal */
.modal-content {
    background: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    color: var(--white);
}

.btn-close {
    filter: invert(1);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
}

/* Stats Section */
.stat-card {
    padding: 2rem;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--golden-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Team Section */
.team-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.team-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 4px solid var(--golden-color);
}

.team-role {
    color: var(--golden-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.team-social a:hover {
    color: var(--golden-color);
}

/* Values Section */
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-icon {
    font-size: 2rem;
    color: var(--golden-color);
    margin-top: 0.5rem;
}

.value-content h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.value-content p {
    color: var(--text-light);
}

/* Contact Page */
.contact-form-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-info-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--golden-color);
    margin-top: 0.25rem;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

/* FAQ Section */
.accordion-item {
    background: var(--primary-color);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-button {
    background: var(--primary-color);
    color: var(--soft-white);
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.accordion-button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
    background: var(--highlight-color);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-body {
    background: var(--secondary-color);
    color: var(--text-muted);
    padding: 1rem 1.5rem;
    transition: var(--transition);
}
/* 🔐 Login Page Styles */

.login-section {
    min-height: 100vh;
    background: #292B36;
    padding: 100px 0;
}

.login-illustration {
    position: relative;
}

.illustration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-paw {
    position: absolute;
    color: var(--accent-color); /* Changed from --golden-color */
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.paw-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.paw-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.paw-3 {
    top: 40%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.auth-container {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 500px;
    margin: 0 auto;
}

.auth-header h2 {
    color: var(--soft-white);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-muted);
}

.auth-tabs {
    background: var(--primary-color);
    border-radius: 25px;
    padding: 0.5rem;
}

.auth-tabs .nav-link {
    background: transparent;
    border: none;
    color: var(--text-muted);
    border-radius: 20px;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.auth-tabs .nav-link.active {
    background: var(--accent-color);
    color: var(--primary-color);
}

.input-group-text {
    background: var(--primary-color);
    border-color: var(--border-color);
    color: var(--accent-color);
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    flex: 1;
    max-width: 150px;
}

.divider-text {
    position: relative;
    color: var(--text-muted);
    margin: 1.5rem 0;
    text-align: center;
}

.divider-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.divider-text::after {
    content: 'Or continue with';
    position: relative;
    background: var(--secondary-color);
    padding: 0 1rem;
    z-index: 2;
}

.auth-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.auth-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}


/* Post Animal Page */
.post-form-card {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    align-items: center;
    color: var(--golden-color);
    margin-bottom: 1.5rem;
}

.section-title i {
    margin-right: 0.5rem;
}

.upload-area {
    margin-bottom: 1.5rem;
}

.upload-box {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.upload-box:hover {
    border-color: var(--golden-color);
    background: rgba(255, 215, 0, 0.05);
}

.upload-box i {
    font-size: 3rem;
    color: var(--golden-color);
    margin-bottom: 1rem;
}

.upload-box h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.upload-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.health-checkboxes .row {
    gap: 0.5rem 0;
}

.listing-type-options .form-check {
    background: var(--primary-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.listing-type-options .form-check:hover {
    border-color: var(--golden-color);
}

.listing-type-options .form-check-label {
    display: block;
    color: var(--white);
    cursor: pointer;
}

.option-description {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Product Categories */
.category-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.category-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 47, 51, 0.9));
    padding: 2rem;
    text-align: center;
}

.category-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.category-overlay p {
    color: var(--text-light);
    margin: 0;
}

/* Footer */
.footer {
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-brand h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-light);
}

.footer h5 {
    color: var(--golden-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--golden-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--golden-color);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0 1rem;
}
/* 🔝 Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color); /* Use updated golden-peach */
    color: var(--primary-color);     /* Text color on button */
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(255, 173, 96, 0.25);
}

/* 👀 Visible State */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* 🌀 Hover Effect */
.back-to-top:hover {
    background: var(--highlight-color);  /* Softer gold on hover */
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(255, 200, 100, 0.35);
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .animal-name {
        font-size: 2.5rem;
    }
    
    .auth-container {
        padding: 2rem;
        margin: 1rem;
    }
    
    .post-form-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    .hero-buttons,
    .cta-buttons,
    .animal-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn,
    .animal-cta .btn {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem 0;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .filter-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .traits-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .animal-name {
        font-size: 2rem;
    }
    
    .upload-box {
        padding: 2rem 1rem;
    }
    
    .upload-box i {
        font-size: 2rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }