/* ===================================
   California Persian Kittens - Main Styles
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #2C5F7C;
    --secondary-color: #1E4A5F;
    --accent-color: #D4A574;
    --soft-blue: #5A8AA8;
    --cream: #F7F5F3;
    --soft-gray: #E9E7E5;
    --text-dark: #2C2C2C;
    --text-light: #4A4A4A;
    --white: #ffffff;
    --light-bg: #FAFAF9;
    --border-color: #DDD9D6;
    --success-color: #7cb342;
    --reserved-color: #E8A87C;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background-color: var(--white);
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

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

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.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-md);
}

.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);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-nav {
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
}

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

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

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

.nav-brand a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

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

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

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

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

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

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

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
    overflow: visible;
    padding: 80px 0;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.hero-text-side {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.hero-image-side {
    position: relative;
    height: 550px;
}

.hero-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.3);
    z-index: 1;
}

.hero-image-side::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid var(--accent-color);
    border-radius: 35px;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    color: var(--primary-color);
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.2;
    font-weight: 700;
}

.hero p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-align: left;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-badge {
    margin-top: 2rem;
    padding: 1.2rem 2.5rem;
    background: var(--accent-color);
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.2);
}

.hero-badge p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-shadow: none;
}

/* Nationwide Banner */
.nationwide-banner {
    background: linear-gradient(135deg, #8FA3B8 0%, #6B7F94 100%);
    padding: 60px 0;
    color: white;
}

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

.banner-text h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

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

.banner-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.banner-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    border-left: 3px solid white;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-style: italic;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

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

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.why-choose-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.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: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

/* Feature icon removed - no longer needed */

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

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

.preview-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

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

.kitten-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.kitten-image {
    position: relative;
    height: 280px;
    background-color: var(--accent-color);
    overflow: hidden;
}

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

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.status-badge.available {
    background-color: var(--success-color);
}

.status-badge.reserved {
    background-color: var(--reserved-color);
}

.status-badge.adopted {
    background-color: var(--text-light);
}

.kitten-info {
    padding: 1.5rem;
}

.kitten-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

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

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

/* Process Section */
.process-section {
    background-color: var(--light-bg);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

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

/* Step number removed - using text in heading instead */

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

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

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

.commitment-text h2 {
    margin-bottom: 1.5rem;
}

.commitment-list {
    margin: 2rem 0;
    padding-left: 0;
}

.commitment-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-light);
}

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

.commitment-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

/* Feeding Section */
.feeding-section {
    background-color: var(--light-bg);
}

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

.feeding-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.feeding-text h2 {
    margin-bottom: 1.5rem;
}

.feeding-list {
    margin: 1.5rem 0;
    padding-left: 0;
}

.feeding-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-light);
}

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

/* Breed Info Section */
.breed-info-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

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

.breed-text h3:first-child {
    margin-top: 0;
}

.breed-highlights {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
}

.breed-highlights h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.characteristics-list {
    list-style: none;
    padding: 0;
}

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

.characteristics-list li:last-child {
    border-bottom: none;
}

/* Care Requirements Section */
.care-requirements-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

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

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

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

.care-card p {
    margin-bottom: 1rem;
}

.care-card p:last-child {
    margin-bottom: 0;
}

/* Why Persian Section */
.why-persian-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.why-persian-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.why-persian-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.why-persian-text h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.why-persian-text h3:first-of-type {
    margin-top: 0;
}

/* FAQ Preview Section */
.faq-preview-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

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

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

/* Service Areas Section */
.service-areas-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

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

.areas-list {
    list-style: none;
    padding: 0;
}

.areas-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.areas-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.nationwide-notice {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

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

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

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

.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: 12px;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
    font-style: normal;
}

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

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

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

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

.cta-section .btn-primary:hover {
    background-color: var(--accent-color);
}

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

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

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.footer-tagline {
    font-style: italic;
    margin-top: 1rem;
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-keywords {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.footer-keywords h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
}

.footer-keywords .keywords-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.footer-keywords .keywords-text strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.3rem;
}

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

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

.page-header p {
    color: var(--white);
    font-size: 1.2rem;
}

/* About Page Styles */
.about-story {
    background-color: var(--white);
}

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

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

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.why-persians-section {
    background-color: var(--white);
}

.why-persians-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-persians-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.why-persians-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.commitment-detail-section {
    background-color: var(--light-bg);
}

.commitment-detail-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.commitment-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.service-area-section {
    background-color: var(--white);
}

.service-area-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.area-column h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.area-column ul {
    text-align: center;
}

.area-column ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.service-note {
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 1.05rem;
}

/* Available Kittens Page */
.available-intro {
    background-color: var(--white);
    padding: 60px 0;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.kittens-listing-section {
    background-color: var(--light-bg);
}

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

.kitten-info-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.info-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

/* Adoption Process Page */
.process-intro {
    background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
    padding: 60px 0;
}

.intro-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content-wrapper .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.intro-cta {
    margin-top: 2.5rem;
}

.detailed-process-section {
    background-color: var(--light-bg);
}

.detailed-process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-step-detail {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.step-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
}

.whats-included-section {
    background-color: var(--white);
}

.whats-included-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.check-icon {
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.article-header h2 {
    max-width: 900px;
    margin: 0 auto 1rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

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

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

.article-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.article-footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.article-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tag {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.article-cta {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.article-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

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

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

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-bg);
    transition: var(--transition);
}

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

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

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

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

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

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Contact Page */
.contact-section {
    background-color: var(--white);
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Contact icon removed */

.contact-form-container {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

.form-submit {
    width: 100%;
}

.trust-message {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

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

.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-areas-contact {
    background-color: var(--light-bg);
}

.service-areas-contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.area-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

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

/* Testimonials Page */
.testimonials-full-section {
    background-color: var(--white);
    padding: 60px 0;
}

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

/* Content Pages */
.content-section {
    background-color: var(--white);
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.content-wrapper h2:first-of-type {
    margin-top: 0;
}

.content-wrapper h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.content-wrapper ul {
    margin-bottom: 1.5rem;
}

.content-wrapper a {
    color: var(--primary-color);
    text-decoration: underline;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.cta-box {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    .hero {
        padding: 60px 0;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }

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

    .hero-image-side {
        height: 400px;
        order: -1;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero p {
        font-size: 1.1rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-split {
        padding: 0 20px;
        gap: 30px;
    }

    .hero-image-side {
        height: 350px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-badge p {
        font-size: 0.9rem;
    }



    .banner-text h2 {
        font-size: 1.5rem;
    }

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

    .commitment-content,
    .feeding-content,
    .about-content,
    .why-persians-content,
    .contact-grid,
    .breed-content,
    .why-persian-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step-detail {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Step number large removed */

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

    section {
        padding: 50px 0;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

