/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #2C3E50;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== COLOR PALETTE ===== */
:root {
    --charcoal: #2C3E50;
    --cream: #F5F5DC;
    --forest: #2E5C4E;
    --gold: #C6A15B;
    --gold-light: #d4b47c;
    --gold-dark: #a88547;
    --light-bg: #f9f9f9;
    --light-gray: #ecf0f1;
    --medium-gray: #bdc3c7;
    --dark-gray: #7f8c8d;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --white: #ffffff;
    --black: #333333;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--charcoal);
}

.highlight {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: var(--charcoal);
    color: white;
    padding: 0.5rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text {
    color: white;
}

.logo-text .highlight {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    font-size: 1rem;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--charcoal);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* ===== HERO SECTION ===== */
.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.9) 0%, rgba(46,92,78,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--gold);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    margin: 0 10px 15px;
    min-width: 220px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ===== TRUST ICONS SECTION ===== */
.trust-icons {
    padding: 5rem 0;
    background-color: var(--white);
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.icon-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.icon-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
    padding: 20px;
}

.icon-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.icon-item h3 {
    color: var(--forest);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.icon-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== KITTEN CARDS ===== */
.featured-kittens {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.kittens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.kitten-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.kitten-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.kitten-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: var(--shadow);
}

.kitten-badge.available {
    background: var(--success);
    color: white;
}

.kitten-badge.reserved {
    background: var(--warning);
    color: white;
}

.kitten-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kitten-card:hover img {
    transform: scale(1.05);
}

.kitten-card-content {
    padding: 2rem 1.5rem;
}

.kitten-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.kitten-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 600;
}

.kitten-details i {
    margin-right: 5px;
    color: var(--forest);
}

.kitten-description {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.kitten-card .btn {
    width: 100%;
}

.center-btn {
    text-align: center;
    margin-top: 2rem;
}

/* ===== BREED INFO SECTION ===== */
.breed-info {
    padding: 5rem 0;
    background: white;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.breed-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.breed-features {
    list-style: none;
    margin: 2rem 0;
}

.breed-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breed-features i {
    color: var(--gold);
    font-size: 1.3rem;
}

.breed-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.breed-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44,62,80,0.9);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.breed-image:hover .image-caption {
    transform: translateY(0);
}

/* ===== TESTIMONIALS SECTION - STYLED BOXES ===== */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(198,161,91,0.2);
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(198,161,91,0.15);
    border-color: var(--gold);
}

.testimonial-box.featured {
    border: 2px solid var(--gold);
    grid-column: span 2;
}

.testimonial-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--gold);
    color: var(--charcoal);
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-quote {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-box-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-box-stars {
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.testimonial-box-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--light-gray);
    padding-top: 1.5rem;
}

.testimonial-box-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.testimonial-box-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-box-author-info h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.testimonial-box-author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.testimonial-box-author-info span {
    color: var(--gold);
    font-weight: 600;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-top: 0.3rem;
}

.testimonials-more {
    margin-top: 2rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--charcoal);
}

.faq-item h3 i {
    color: var(--gold);
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.7;
}

.faq-item a {
    color: var(--gold);
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--forest) 0%, var(--charcoal) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.png') repeat;
    opacity: 0.1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    margin: 0 10px 15px;
    min-width: 220px;
}

.cta-contact {
    font-size: 1.1rem;
}

.cta-contact i {
    color: var(--gold);
    margin-right: 8px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--forest) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 5rem 0;
}

.content-section:nth-child(even) {
    background-color: var(--light-bg);
}

/* ===== TESTIMONIALS PAGE SPECIFIC ===== */
.testimonials-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonials-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.testimonials-stat {
    text-align: center;
}

.testimonials-stat .stat-number {
    font-size: 2rem;
    color: var(--gold);
}

.testimonials-stat .stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    text-align: center;
}

.video-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.video-placeholder img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-placeholder:hover img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0.9;
    transition: var(--transition);
}

.video-play-btn:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h3 {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.video-card p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.review-cta-box {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--charcoal);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
}

.review-cta-box h2 {
    color: var(--charcoal);
    font-size: 2.5rem;
}

.review-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.enhanced-footer {
    background: var(--charcoal);
    color: white;
    position: relative;
}

.footer-main {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-col h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-col p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    opacity: 0.9;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--gold);
    transform: translateX(5px);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    background: rgba(0,0,0,0.2);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-bottom a {
    color: var(--gold);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.seo-footer {
    font-size: 0.85rem;
    opacity: 0.6;
    max-width: 800px;
    margin: 0.5rem auto 0;
}

/* ===== KITTEN DETAIL PAGE ===== */
.kitten-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.main-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.thumbnail-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail-grid img:hover {
    opacity: 0.8;
    border-color: var(--gold);
    transform: scale(1.05);
}

.kitten-info {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.kitten-info h2 {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    margin: 2rem 0;
}

.info-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--medium-gray);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list i {
    color: var(--gold);
    width: 25px;
    font-size: 1.2rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198,161,91,0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* ===== FILTERS ===== */
.filters {
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--charcoal);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--gold);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== SHIPPING PAGE ===== */
.shipping-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.shipping-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.shipping-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.shipping-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.shipping-card h3 {
    margin-bottom: 1rem;
    color: var(--forest);
}

/* ===== BLOG POSTS ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 0.9rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-intro {
        grid-template-columns: 1fr;
    }
    
    .testimonial-box.featured {
        grid-column: span 1;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--charcoal);
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.8rem 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .kitten-gallery {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .review-cta-box {
        padding: 2rem;
    }
    
    .review-buttons {
        flex-direction: column;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .icons-grid {
        grid-template-columns: 1fr;
    }
    
    .kittens-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .thumbnail-grid img {
        height: 70px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease;
}

.slide-in-left {
    animation: slideInLeft 1s ease;
}

.slide-in-right {
    animation: slideInRight 1s ease;
}

/* ===== UTILITY CLASSES ===== */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }
.pt-4 { padding-top: 4rem; }
.pt-5 { padding-top: 5rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }
.pb-4 { padding-bottom: 4rem; }
.pb-5 { padding-bottom: 5rem; }