* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header & Navigation */
header {
    background: #1a3a52;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

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

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    color: white;
    font-size: 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.4rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    color: #1a3a52;
    display: block;
    padding: 0.8rem 1.5rem;
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
    background: white;
    color: #1a3a52;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: white;
    padding: 80px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
}

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

.hero-text {
    padding-right: 2rem;
}

.hero-title {
    font-size: 4rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 900;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 0.9rem;
    color: #000;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-button {
    display: inline-block;
    background: #000;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

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

.hero-image-placeholder {
    width: 100%;
    max-width: 550px;
    height: 400px;
    background: #D4DCE8;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 2px solid #8B9DC3;
}

.hero-image-actual {
    width: 100%;
    max-width: 550px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hero-image-placeholder span {
    font-size: 6rem;
    margin-bottom: 1rem;
}

.hero-image-placeholder p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
}

/* Legacy support for old hero classes */
.cta-button {
    display: inline-block;
    background: #000;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000;
    font-weight: 700;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.features li {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Kittens Section */
.kittens {
    padding: 80px 20px;
    background: white;
}

.kittens h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

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

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

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

.kitten-image-placeholder {
    background: #D4DCE8;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border-bottom: 2px solid #8B9DC3;
}

.kitten-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #000;
    font-weight: 700;
}

.kitten-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Contact Hero Section */
.contact-hero {
    background-image: url('image/hero1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: #000;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

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

.contact-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    display: inline-block;
    border-radius: 10px;
}

.contact-hero-description {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: #000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 500;
}

/* Page Hero Section (Same as Contact Hero) */
.page-hero {
    background-image: url('image/hero1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: #000;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

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

.page-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    display: inline-block;
    border-radius: 10px;
}

.page-hero-description {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: #000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 500;
}

/* New Contact Page Design */
.contact-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.contact-left {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-right {
    padding: 20px;
}

.contact-heading {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #000;
    font-weight: 700;
}

.form-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.submit-button {
    margin-top: 10px;
    width: 100%;
    font-size: 1.1rem;
    padding: 16px 40px;
}

.contact-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

.contact-info-box {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #000;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail p {
    margin: 8px 0;
    color: #333;
    line-height: 1.6;
}

.contact-detail strong {
    color: #000;
    font-weight: 700;
    font-size: 1.05rem;
}

.phone-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin: 12px 0 !important;
    letter-spacing: 0.5px;
}

.email-address {
    font-size: 1.15rem;
    font-weight: 600;
    color: #000;
    margin: 12px 0 !important;
}

.contact-note {
    font-size: 0.88rem;
    color: #666;
    font-style: italic;
    margin-top: 12px !important;
    line-height: 1.5;
}

.contact-hours {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-hours h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
}

.contact-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hours ul li {
    padding: 12px 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.contact-hours ul li:last-child {
    border-bottom: none;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .contact-hero {
        padding: 60px 20px;
    }

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

    .contact-hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .page-hero {
        padding: 60px 20px;
    }

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

    .page-hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-left {
        padding: 30px 25px;
    }

    .contact-right {
        padding: 0 10px;
    }

    .contact-heading {
        font-size: 1.7rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info-box,
    .contact-hours {
        padding: 25px;
    }
}

.submit-button {
    background: #000;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* CTA Cards Section */
.cta-cards-section {
    padding: 80px 20px;
    background: white;
}

.cta-cards-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 60px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-card {
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-10px);
}

.card-pink {
    background: white;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.card-gradient {
    background: white;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.card-blue {
    background: white;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cta-card-image {
    width: 100%;
    height: 250px;
    background: rgba(255,255,255,0.3);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-card-button {
    display: inline-block;
    background: #000;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-card-button:hover {
    background: #333;
}

/* Available Kittens Showcase Section */
.available-kittens-showcase {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.showcase-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    color: #000;
    margin-bottom: 1rem;
}

.showcase-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.kittens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

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

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

.kitten-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e8c5e8 0%, #b8d4f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.kitten-info {
    padding: 25px;
}

.kitten-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B7FA8;
    margin-bottom: 0.8rem;
}

.kitten-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.kitten-price-home {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d32f2f;
    margin: 0 0 20px 0;
    padding: 0;
}

.kitten-card-buttons {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.kitten-reserve-btn-home {
    background: #000;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
    display: block;
}

.kitten-reserve-btn-home:hover {
    background: #333;
}

.kitten-more-btn-home {
    background: white;
    color: #000;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border: 2px solid #000;
    transition: all 0.3s ease;
    display: block;
}

.kitten-more-btn-home:hover {
    background: #000;
    color: white;
}

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

.showcase-button {
    display: inline-block;
    background: #000;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.showcase-button:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive for Available Kittens Showcase */
@media (max-width: 768px) {
    .kittens-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .kitten-image-placeholder {
        height: 250px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-image {
    position: sticky;
    top: 100px;
}

.faq-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-subtitle {
    color: #e91e63;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 1rem;
}

.faq-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #e91e63;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
}

.faq-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #666;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 16px 60px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* FAQ More Button */
.faq-more-button-container {
    text-align: center;
    margin-top: 30px;
}

.faq-more-button {
    display: inline-block;
    background: #000;
    color: white;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-more-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive for FAQ Section */
@media (max-width: 968px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-image {
        position: relative;
        top: 0;
    }

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

    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .faq-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 15px 65px;
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}

.blog-subtitle {
    color: #e91e63;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

.blog-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e91e63;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 60px;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e91e63;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
}

.blog-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover .blog-arrow {
    transform: translateX(5px);
}

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

.blog-view-all {
    display: inline-block;
    padding: 15px 40px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.blog-view-all:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive for Blog Section */
@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .blog-description {
        font-size: 1rem;
    }

    .blog-card-title {
        font-size: 1.2rem;
        min-height: auto;
    }
}

@media (min-width: 969px) and (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Story Page Styles */
.story-hero {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}

.story-hero-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.story-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.story-subtitle {
    color: #e91e63;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.story-title {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 1rem;
}

.story-intro {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.story-content {
    padding: 80px 20px;
    background: white;
}

.story-text {
    max-width: 900px;
    margin: 0 auto;
}

.story-opening {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #f8bbd0);
    margin: 3rem auto;
    border-radius: 2px;
}

.story-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.story-highlight {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 2.5rem 0;
    border-left: 5px solid #e91e63;
}

.story-highlight h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

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

.story-list li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 0;
}

.story-closing {
    text-align: center;
    margin-top: 3rem;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 15px;
}

.story-final {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.story-excited {
    font-size: 1.2rem;
    color: #e91e63;
    font-weight: 600;
    margin-bottom: 2rem;
}

.story-cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.story-cta-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.why-russian-blue {
    padding: 80px 20px;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

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

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive for Story Page */
@media (max-width: 968px) {
    .story-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-hero-image {
        height: 300px;
    }

    .story-title {
        font-size: 2.2rem;
    }

    .story-intro {
        font-size: 1.1rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

@media (min-width: 969px) and (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* City Landing Pages */
.city-hero {
    background: white;
    padding: 80px 20px;
    text-align: center;
    color: #000;
}

.city-hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #000;
}

.city-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #333;
}

.city-content {
    padding: 80px 20px;
    background: white;
}

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

.city-content-wrapper h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.city-content-wrapper h3 {
    font-size: 1.8rem;
    color: #000;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.city-content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.city-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.city-features-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.city-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6B7FA8;
    font-weight: bold;
    font-size: 1.3rem;
}

.city-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.city-cta-button {
    display: inline-block;
    background: #000;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.city-cta-button:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.city-cta-button.secondary {
    background: white;
    color: #000;
    border: 2px solid #000;
}

.city-cta-button.secondary:hover {
    background: #000;
    color: white;
}

/* Footer */
footer {
    background: #1a3a52;
    color: white;
    padding: 80px 20px 20px;
    position: relative;
    margin-top: 100px;
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #1a3a52;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-subtitle {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #ffc0e3;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.footer-column p {
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-button {
    display: inline-block;
    background: #000;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s;
}

.footer-button:hover {
    background: #333;
}

.footer-contact {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Quick Info Section */
.quick-info {
    padding: 60px 20px;
    background: white;
}

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

.info-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s;
}

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

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
}

/* About Silvermist Section */
.about-silvermist {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.about-text {
    padding-right: 2rem;
}

.about-title {
    font-size: 3.5rem;
    color: #6B7FA8;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(107, 127, 168, 0.2);
}

.about-subtitle {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.image-placeholder {
    width: 100%;
    max-width: 450px;
    height: 500px;
    background: #D4DCE8;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 2px solid #8B9DC3;
}

.about-image-actual {
    width: 100%;
    max-width: 450px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image-inline {
    float: right;
    margin: 0 0 20px 30px;
    max-width: 300px;
}

.about-image-inline-img {
    width: 100%;
    max-width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.image-placeholder span {
    font-size: 6rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Card Button */
.card-button {
    display: inline-block;
    background: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    margin: 1rem;
    transition: transform 0.3s;
}

.card-button:hover {
    background: #333;
    transform: scale(1.05);
}

/* Purchasing Page Styles */
.purchasing-header {
    padding: 60px 20px 40px;
    background: white;
    text-align: center;
    color: #000;
}

.purchasing-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #000;
}

.purchasing-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.purchasing-info {
    padding: 60px 20px;
    background: white;
}

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

.info-content h2 {
    font-size: 2rem;
    color: #000;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-content h2:first-child {
    margin-top: 0;
}

.info-content h3 {
    color: #000;
    font-weight: 700;
}

.info-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.included-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.included-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
    font-size: 1.3rem;
}

.included-list li strong {
    color: #333;
}

/* Adoption Fee Page Styles */
.adoption-fee-section {
    padding: 60px 20px 80px;
    background: #f8f9fa;
    min-height: auto;
}

.fee-container {
    max-width: 600px;
    margin: 0 auto 40px;
    background: white;
    padding: 40px;
    border-radius: 20px;
}

.fee-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.fee-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    position: relative;
    display: block;
    padding: 25px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-option.selected {
    background: #6B7FA8;
    border-color: #6B7FA8;
    color: white;
}

.option-content {
    padding-right: 40px;
}

.option-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #000;
}

.payment-option.selected .option-header h3,
.payment-option.selected .option-description {
    color: white;
}

.option-description {
    font-size: 1rem;
    color: #666;
}

.radio-circle {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: white;
}

.payment-option.selected .radio-circle {
    border-color: white;
    background: white;
}

.payment-option.selected .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #8b5cf6;
    border-radius: 50%;
}

.amount-due {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px dotted #ccc;
    margin-bottom: 1.5rem;
}

.amount-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.amount-value {
    font-size: 2rem;
    font-weight: bold;
    color: #8b5cf6;
}

.reserve-button {
    width: 100%;
    background: #000;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.reserve-button:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Payment Methods Section */
.payment-methods {
    margin-top: 40px;
    padding: 35px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 15px;
    text-align: center;
}

.payment-methods-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.payment-methods-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.payment-method-item {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.payment-method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.15);
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.payment-method-item h4 {
    font-size: 1.1rem;
    color: #000;
    font-weight: 700;
    margin: 0;
}

.payment-note {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* Travel Page Styles */
.travel-section {
    padding: 60px 20px;
    background: #e8e5f0;
    min-height: calc(100vh - 200px);
}

.travel-container {
    max-width: 650px;
    margin: 0 auto;
    background: #e8e5f0;
    padding: 40px;
    border-radius: 20px;
}

.travel-title {
    font-size: 2.5rem;
    color: #5b4a7d;
    margin-bottom: 3rem;
    font-weight: 700;
}

.travel-options {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.travel-option {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 2px dotted #c5b8d9;
}

.travel-option:last-child {
    border-bottom: none;
}

.travel-icon {
    font-size: 1.8rem;
    width: 50px;
    flex-shrink: 0;
}

.travel-info {
    flex: 1;
    padding: 0 20px;
}

.travel-info h3 {
    font-size: 1.3rem;
    color: #000;
    font-weight: 700;
    margin: 0;
}

.travel-price {
    font-size: 1.3rem;
    color: #5b4a7d;
    font-weight: 600;
    text-align: right;
    min-width: 120px;
}

/* Adoption Journey Page Styles */
.journey-header {
    padding: 60px 20px 40px;
    background: white;
    text-align: center;
    color: #000;
}

.journey-main-title {
    font-size: 3rem;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.journey-intro {
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

.journey-section {
    padding: 60px 20px;
    background: white;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.journey-card {
    position: relative;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 35px 25px;
    transition: all 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
    border-color: #e91e63;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #e91e63;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.step-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
}

.step-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

.step-description a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.step-description a:hover {
    color: #c2185b;
    text-decoration: underline;
}

/* Journey Additional Info Section */
.journey-info {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 40px 0;
}

.journey-info h2 {
    font-size: 2.5rem;
    color: #000;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.info-item {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Journey CTA Section */
.journey-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.journey-cta h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.journey-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: #000;
    color: white;
}

.cta-button.primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: white;
    color: #000;
    border: 2px solid #000;
}

.cta-button.secondary:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* About Russian Blue Breed Styles */
.about-breed {
    padding: 60px 20px;
    background: white;
}

.breed-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.breed-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.breed-card h3 {
    color: #000;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.breed-card p {
    margin: 10px 0;
    line-height: 1.6;
}

.breed-card strong {
    color: #333;
}

.why-choose {
    background: #6B7FA8;
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.why-choose h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
}

.why-choose ul {
    list-style: none;
    padding: 0;
}

.why-choose li {
    padding: 10px 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* FAQ Section Styles */
.faq-section {
    padding: 60px 20px;
    background: white;
}

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

.faq-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.3);
}

.faq-question {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.faq-answer {
    color: #333;
    line-height: 1.8;
}

.faq-answer a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

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

.still-have-questions {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    color: #333;
}

.still-have-questions h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #000;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background: #000;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #333;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Sitemap Section Styles */
.sitemap-section {
    padding: 60px 20px;
    background: white;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.sitemap-category {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sitemap-category h3 {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    font-weight: 700;
}

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

.sitemap-list li {
    margin: 15px 0;
    line-height: 1.6;
}

.sitemap-list a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-list a:hover {
    color: #a78bfa;
}

.sitemap-footer-info {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #f0f0f0;
    border-radius: 15px;
}

.sitemap-footer-info h3 {
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.sitemap-footer-info a {
    color: #a78bfa;
    font-weight: 600;
}

.travel-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Blog Section Styles */
.blog-section {
    padding: 60px 20px;
    background: white;
}

.blog-section h1 {
    text-align: center;
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(167, 139, 250, 0.3);
}

.blog-image-placeholder {
    background: #D4DCE8;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 2px solid #8B9DC3;
}

.blog-content {
    padding: 30px;
}

.blog-content h2 {
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-content h2 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: #333;
}

.blog-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #8b5cf6;
}

/* Blog Article Styles */
.blog-article {
    padding: 60px 20px;
    background: white;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-header h1 {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.article-meta {
    color: #999;
    font-size: 0.9rem;
}

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

.article-content h2 {
    color: #000;
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    font-weight: 700;
}

.article-content p {
    margin-bottom: 25px;
    color: #444;
    text-align: justify;
}

.article-content p:first-of-type::first-letter {
    font-size: 3.5rem;
    font-weight: bold;
    color: #a78bfa;
    float: left;
    line-height: 1;
    margin-right: 10px;
    margin-top: 5px;
}

/* Reviews Section Styles */
.reviews-section {
    padding: 60px 0;
    background: white;
    min-height: calc(100vh - 200px);
    overflow: hidden;
}

.reviews-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: visible;
}

.reviews-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: calc(33.333% - 14px);
    background: #f5f5f5;
    border-radius: 15px;
    padding: 25px;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: nowrap;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    white-space: nowrap;
}

.google-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}

.star {
    color: #fbbc04;
    font-size: 1.2rem;
}

.verified-badge {
    margin-left: 8px;
    color: #4285f4;
    font-size: 1rem;
    background: #e8f0fe;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.review-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive Reviews */
@media (max-width: 968px) {
    .review-card {
        min-width: calc(50% - 10px);
    }

    .reviews-section {
        padding: 40px 10px;
    }

    .section-title {
        font-size: 2rem;
        padding: 0 10px;
    }
}

@media (max-width: 640px) {
    .reviews-section {
        padding: 40px 0;
        overflow-x: hidden;
    }

    .reviews-carousel {
        padding: 0 50px;
        overflow: visible;
    }

    .reviews-container {
        overflow: hidden;
        width: 100%;
        margin: 0;
    }

    .reviews-track {
        gap: 20px;
    }

    .review-card {
        min-width: calc(100% - 20px);
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        padding: 20px;
        margin: 0 10px;
        box-sizing: border-box;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 0 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        z-index: 100;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .review-header {
        gap: 10px;
        margin-bottom: 12px;
        flex-wrap: nowrap;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .reviewer-info {
        flex: 1;
        min-width: 0;
    }

    .reviewer-name {
        font-size: 0.9rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .review-date {
        font-size: 0.75rem;
    }

    .google-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
        word-break: break-word;
    }

    .star {
        font-size: 1rem;
    }

    .verified-badge {
        width: 18px;
        height: 18px;
        font-size: 0.8rem;
        margin-left: 6px;
    }

    .review-stars {
        gap: 3px;
        margin-bottom: 12px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-cards-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .cta-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #1a3a52;
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 1.5rem;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 0.8rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* Mobile Dropdown Styles */
    .dropdown-toggle::after {
        display: inline-block;
    }

    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    /* Purchasing Page Mobile Styles */
    .purchasing-title {
        font-size: 2rem;
    }

    .purchasing-intro {
        font-size: 1rem;
    }

    .info-content h2 {
        font-size: 1.6rem;
    }

    .info-content p,
    .included-list li {
        font-size: 1rem;
    }

    /* Journey Page Mobile Styles */
    .journey-main-title {
        font-size: 2rem;
    }

    .journey-intro {
        font-size: 1rem;
    }

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

    .step-number {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 1.3rem;
    }

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

    .journey-info h2 {
        font-size: 1.8rem;
    }

    .journey-cta h2 {
        font-size: 1.8rem;
    }

    .journey-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 12px 25px;
    }

    /* Payment Methods Mobile Styles */
    .payment-methods {
        padding: 25px 20px;
    }

    .payment-methods-title {
        font-size: 1.5rem;
    }

    .payment-methods-subtitle {
        font-size: 0.9rem;
    }

    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .payment-method-item {
        padding: 20px 10px;
    }

    .payment-icon {
        font-size: 2rem;
    }

    .payment-method-item h4 {
        font-size: 1rem;
    }

    .payment-note {
        font-size: 0.85rem;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        color: white;
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

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

    .hero-tagline {
        font-size: 0.8rem;
    }

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

    .hero-image-placeholder {
        height: 300px;
    }

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

    .fee-container {
        padding: 20px;
    }

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

    .about-silvermist-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }

    .image-placeholder {
        height: 400px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #000;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: #333;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.back-to-top.show {
    display: flex;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.chat-button {
    position: relative;
    width: 60px;
    height: 60px;
    background: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-button:hover {
    background: #333;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.chat-icon,
.chat-close-icon {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.chat-close-icon {
    display: none;
}

.chat-button.active .chat-icon {
    display: none;
}

.chat-button.active .chat-close-icon {
    display: block;
}

.chat-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 380px;
    max-width: calc(100vw - 60px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: #000;
    color: white;
    padding: 16px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-header-text h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.chat-status {
    margin: 4px 0 0 0;
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.chat-minimize {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.chat-minimize:hover {
    opacity: 0.7;
}

.chat-body {
    display: flex;
    flex-direction: column;
    height: 450px;
    max-height: calc(100vh - 200px);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f9fafb;
}

.chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    flex-direction: row;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    flex-shrink: 0;
}

.message-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.message-content {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 75%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-message .message-content {
    background: #000;
    color: white;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.message-content p + p {
    margin-top: 8px;
}

.chat-form {
    padding: 16px;
    background: white;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 12px 12px;
}

.chat-input-group {
    margin-bottom: 12px;
}

.chat-input-field,
.chat-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.chat-input-field:focus,
.chat-textarea:focus {
    outline: none;
    border-color: #000;
}

.chat-textarea {
    resize: none;
    min-height: 60px;
}

.chat-send-button {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.chat-send-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 20px;
        left: 20px;
    }

    .chat-button {
        width: 55px;
        height: 55px;
    }

    .chat-icon,
    .chat-close-icon {
        width: 24px;
        height: 24px;
    }

    .chat-window {
        width: calc(100vw - 40px);
        bottom: 85px;
    }

    .chat-body {
        height: 400px;
    }

    .message-content {
        max-width: 85%;
    }
}

/* Available Kittens Showcase Layout */
.kitten-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    padding: 0;
    background: transparent;
}

/* Left Side - Details */
.kitten-details {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}

.personality-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
}

.personality-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.personality-badge {
    background: #e8e4f3;
    color: #5e35b1;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.kitten-price {
    font-size: 48px;
    font-weight: 700;
    color: #d32f2f;
    margin: 0 0 30px 0;
}

.reservation-fee {
    font-size: 16px;
    color: #666;
    margin: -20px 0 30px 0;
}

.kitten-name {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

.kitten-gender {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.bonded-pair-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: -10px 0 20px 0;
}

.about-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
}

.kitten-description {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

.kitten-buttons {
    display: flex;
    gap: 15px;
}

.kitten-adopt-btn,
.kitten-reserve-btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    flex: 1;
}

.kitten-adopt-btn {
    background: #000;
    color: white;
}

.kitten-adopt-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.kitten-reserve-btn {
    background: #000;
    color: white;
}

.kitten-reserve-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Right Side - Images */
.kitten-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kitten-main-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

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

.kitten-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: #999;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #000;
}

/* Mobile Responsive for Kitten Showcase */
@media (max-width: 968px) {
    .kitten-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kitten-details {
        padding-right: 0;
        order: 2;
    }

    .kitten-images {
        order: 1;
    }

    .kitten-price {
        font-size: 40px;
    }

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

    .kitten-adopt-btn,
    .kitten-reserve-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .kitten-meta {
        flex-direction: column;
        gap: 10px;
    }

    .kitten-price {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .personality-title {
        font-size: 16px;
    }

    .personality-badge {
        font-size: 13px;
        padding: 6px 14px;
    }

    .kitten-name {
        font-size: 20px;
    }

    .kitten-description {
        font-size: 14px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }
}