/* Fun Photography Website Styles */

:root {
    --primary-color: #6D6B6A; /* medium grey from new logo */
    --secondary-color: #3F3E40; /* dark grey from new logo */
    --accent-color: #EBECEB; /* off-white from new logo */
    --dark-color: #181A22; /* very dark blue-grey from new logo */
    --light-color: #C0BCBE; /* light grey from new logo */
    --success-color: #51cf66;
    --warning-color: #ffd43b;
    --danger-color: #ff6b6b;
    --text-color: #181A22; /* very dark blue-grey for text */
    --white: #ffffff;
    --light-bg: #EBECEB;
    --border-color: #C0BCBE;
    --shadow-color: rgba(109,107,106,0.1);
    --shadow-color-dark: rgba(24,26,34,0.08);
    --shadow-color-light: rgba(109,107,106,0.04);
    --border-radius: 15px;
    --box-shadow: 0 10px 30px var(--shadow-color-dark);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--white);
}

/* Cat Logo Animation - Only for hero section */
.hero-brand .cat-logo {
    display: inline-block;
    animation: bounce 2s infinite;
    font-size: 1.2em;
}

/* Static logo for other sections */
.cat-logo {
    display: inline-block;
    font-size: 1.2em;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    margin-top: 76px; /* Account for fixed navbar */
}

/* Hero Section */
.hero-section {
    background: white;
    color: var(--dark-color);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-carousel-item.active {
    opacity: 1;
}

.hero-overlay {
    background: none;
}

.hero-section::before {
    content: none;
}

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

.hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hero-buttons > * {
    margin: 0 !important;
}

.hero-buttons .btn {
    width: auto;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

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

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

.hero-buttons .btn.btn-outline-light {
    background: white;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.hero-buttons .btn.btn-outline-light:hover, .hero-buttons .btn.btn-outline-light:focus {
    background: var(--dark-color);
    color: white;
}

/* Cat Stickers */
.cat-sticker {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.cat-sticker-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cat-sticker-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.cat-sticker-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.cat-sticker-4 {
    top: 40%;
    right: 10%;
    animation-delay: 0.5s;
}

.cat-sticker-5 {
    bottom: 20%;
    right: 25%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* About Photo */
.about-photo-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.about-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-photo-container:hover .about-photo {
    transform: scale(1.05);
}

/* Image Placeholders */
.hero-placeholder, .about-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: var(--border-radius);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.placeholder-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.placeholder-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: move 20s linear infinite;
    z-index: -1;
}

@keyframes move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

/* Service Cards */
.service-card, .contact-card, .contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 18px var(--shadow-color), 0 1.5px 6px var(--shadow-color-light);
    border: 1.5px solid var(--border-color);
    padding: 2.2rem 1.7rem 1.7rem 1.7rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-card:hover, .contact-card:hover, .contact-info-card:hover {
    box-shadow: 0 8px 32px var(--shadow-color), 0 4px 16px var(--shadow-color-dark);
    border-color: var(--primary-color);
    transform: translateY(-6px) scale(1.01);
}
.service-icon, .contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.7rem;
}
.service-emoji, .cat-emoji, .contact-icon span.cat-emoji {
    font-size: 2.2rem;
    background: var(--light-bg);
    border-radius: 50%;
    padding: 0.3em 0.5em;
    box-shadow: 0 1px 4px var(--shadow-color-light);
    display: inline-block;
}
.service-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
    text-align: center;
}
.service-content p {
    color: var(--primary-color);
    font-size: 1.01rem;
    margin-bottom: 1.1rem;
    text-align: center;
}
@media (max-width: 991px) {
    .service-card, .contact-card, .contact-info-card {
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    }
    .service-content h4 {
        font-size: 1rem;
    }
}
@media (max-width: 767px) {
    .service-card, .contact-card, .contact-info-card {
        padding: 1rem 0.3rem 1rem 0.3rem;
    }
    .service-content h4 {
        font-size: 0.95rem;
    }
    .service-emoji, .cat-emoji, .contact-icon span.cat-emoji {
        font-size: 1.3rem;
    }
}

/* Section Titles */
.section-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 0 1px 2px rgba(255,255,255,0.12);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Cat Facts */
.cat-facts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.cat-fact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color-dark);
    transition: var(--transition);
}

.cat-fact:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px var(--shadow-color-dark);
}

.cat-emoji {
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: var(--white);
    color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: none;
}

.cta-section .btn {
    color: var(--white);
    background: var(--dark-color);
    border: none;
}

.cta-section .btn.btn-outline-light {
    color: var(--dark-color);
    background: transparent;
    border: 2px solid var(--dark-color);
}

.cta-section .btn.btn-outline-light:hover, .cta-section .btn.btn-outline-light:focus {
    background: var(--dark-color);
    color: var(--white);
}

/* Contact Form */
.contact-card:hover, .contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-color-dark);
    border-color: var(--primary-color);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center; /* was flex-start, now center for vertical alignment */
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--primary-color);
}

.contact-form {
    padding: 3rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    height: 100%;
}

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

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Gallery Masonry Layout */
.gallery-masonry {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 32px 0;
    background: #fff;
}

.gallery-item {
    width: calc(33.333%);
    padding: 4px;
    box-sizing: border-box;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .gallery-item {
        width: 50%;
    }
}
@media (max-width: 600px) {
    .gallery-item {
        width: 100%;
    }
}

.gallery-image-container {
    width: 100%;
    /* Remove border-radius and box-shadow for square, flat look */
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    background: #fff;
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

.gallery-placeholder {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    grid-column: 1 / -1;
}

.cat-stickers-gallery {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cat-stickers-gallery .cat-sticker {
    position: static;
    animation: bounce 2s infinite;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

/* Gallery Image Styles */
.gallery-item {
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,107,107,0.8), rgba(255,193,7,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image-container:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
}

.gallery-overlay-content .cat-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.gallery-overlay-content p {
    margin: 0;
    font-weight: 600;
    text-transform: capitalize;
}

/* Loading Spinner */
.loading-spinner {
    padding: 3rem;
    text-align: center;
    grid-column: 1 / -1;
}

.loading-spinner .cat-emoji {
    font-size: 3rem;
    animation: bounce 1s infinite;
}

/* Gallery Error */
.gallery-error {
    padding: 3rem;
    text-align: center;
    grid-column: 1 / -1;
}

.gallery-error .cat-emoji-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: capitalize;
}

/* FAQ */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Alerts */
.alert {
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #40c057 100%);
    color: white;
}

/* Footer */
.footer {
    background: var(--dark-color) !important;
}

.social-links a {
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero-buttons .btn {
        min-width: 220px;
        max-width: 90vw;
        align-self: center;
    }
    .about-photo-container {
        margin-bottom: 0;
    }
    .about-image {
        margin-top: 1.5rem;
    }
    .cat-facts {
        flex-direction: column;
    }
    .contact-info, .contact-form {
        padding: 2rem;
    }
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .hero-placeholder, .about-placeholder {
        height: 300px;
    }
    .service-card {
        padding: 1.5rem;
    }
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.cat-logo img {
    width: 2.2em;
    height: 2.2em;
    object-fit: cover;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    background: white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.display-4,
.h1,
.h2,
.h3,
.h4,
.h5 {
    color: var(--dark-color);
    text-shadow: 0 1px 2px rgba(255,255,255,0.12);
}

/* --- Uniform Rounded Button Styles --- */
.btn, .btn-primary, .btn-outline-primary, .btn-outline-light, .btn-light, .btn-lg, .btn-sm {
  border-radius: 30px !important;
  font-weight: 600;
  padding: 0.65em 2em;
  transition: var(--transition);
  box-shadow: 0 1px 8px var(--shadow-color);
  border: none;
  outline: none;
}
.btn-sm {
  padding: 0.4em 1.2em;
  font-size: 0.95em;
}
.btn-lg {
  padding: 0.85em 2.5em;
  font-size: 1.15em;
}
.btn-primary {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: var(--white);
  box-shadow: 0 4px 16px var(--shadow-color);
  transform: translateY(-2px) scale(1.03);
}
.btn-outline-primary {
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  background: transparent;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
  box-shadow: 0 4px 16px var(--shadow-color);
  transform: translateY(-2px) scale(1.03);
}
.btn-outline-light {
  color: var(--dark-color);
  border: 2px solid var(--dark-color);
  background: transparent;
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background: var(--dark-color);
  color: var(--white);
  border-color: var(--dark-color);
  box-shadow: 0 4px 16px var(--shadow-color);
  transform: translateY(-2px) scale(1.03);
}
.btn-light {
  background: var(--white);
  color: var(--secondary-color);
  border: 2px solid var(--border-color);
}
.btn-light:hover, .btn-light:focus {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px var(--shadow-color);
  transform: translateY(-2px) scale(1.03);
}

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.hero-brand .cat-logo img {
    width: 140px;
    height: 140px;
    margin-bottom: 0.7rem;
}
.hero-brand-text {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -1px;
    white-space: nowrap;
    text-shadow: 0 2px 8px var(--shadow-color-dark), 0 1px 0 var(--white);
}
.hero-subtitle {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 2.2rem;
    text-shadow: 0 1px 6px var(--shadow-color-dark);
}
@media (max-width: 992px) {
    .hero-brand .cat-logo img {
        width: 100px;
        height: 100px;
    }
    .hero-brand-text {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .hero-brand .cat-logo img {
        width: 70px;
        height: 70px;
    }
    .hero-brand-text {
        font-size: 1.2rem;
    }
}

/* --- Flatter Service Detail Card --- */
.service-detail-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 18px var(--shadow-color), 0 1.5px 6px var(--shadow-color-light);
    border: 1.5px solid var(--border-color);
    padding: 2.2rem 1.7rem 1.7rem 1.7rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-detail-card:hover {
    box-shadow: 0 8px 32px var(--shadow-color), 0 4px 16px var(--shadow-color-dark);
    border-color: var(--primary-color);
    transform: translateY(-6px) scale(1.01);
}
.service-header {
    text-align: center;
    margin-bottom: 1.2rem;
}
.service-icon-large {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.7rem;
}
.service-emoji-large {
    font-size: 3rem;
    background: var(--light-bg);
    border-radius: 50%;
    padding: 0.4em 0.6em;
    box-shadow: 0 1px 4px var(--shadow-color-light);
}
.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}
.service-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.service-description {
    color: #6D6B6A;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
    text-align: center;
}
.service-features {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 0.9rem 1rem 0.8rem 1rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 1px 4px var(--shadow-color-light);
}
.service-features h5 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
}
.service-features ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.service-features li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.4em;
    color: #3F3E40;
    font-size: 0.98rem;
}
.service-features li::before {
    content: "🐾";
    position: absolute;
    left: 0;
    top: 0.08em;
    font-size: 1em;
    opacity: 0.6;
}
.service-cta {
    text-align: center;
    margin-top: 1rem;
}
.service-cta .btn {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #fff !important;
    font-size: 1rem;
    padding: 0.65em 2em;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 1px 8px rgba(207,184,164,0.10);
    transition: var(--transition);
}
.service-cta .btn:hover, .service-cta .btn:focus {
    background: var(--dark-color) !important;
    border-color: var(--dark-color) !important;
    color: #fff !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 16px rgba(207,184,164,0.14);
}
@media (max-width: 991px) {
    .service-detail-card {
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    }
    .service-title {
        font-size: 1.2rem;
    }
}
@media (max-width: 767px) {
    .service-detail-card {
        padding: 1rem 0.3rem 1rem 0.3rem;
    }
    .service-title {
        font-size: 1rem;
    }
    .service-emoji-large {
        font-size: 1.7rem;
    }
}

.btn-primary:active, .btn-primary:focus, .btn-outline-primary:active, .btn-outline-primary:focus {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(207,184,164,0.14);
  outline: none !important;
}
.btn-outline-primary:active, .btn-outline-primary:focus {
  background: var(--secondary-color) !important;
  color: #fff !important;
  border-color: var(--secondary-color) !important;
  outline: none !important;
}

/* Load More Auto-Loading */
.load-more-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    grid-column: 1 / -1;
}

.load-more-trigger {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    border: 2px dashed var(--border-color);
    transition: var(--transition);
}

.load-more-trigger:hover {
    border-color: var(--primary-color);
    background: rgba(207, 184, 164, 0.1);
}

.load-more-trigger .loading-spinner {
    text-align: center;
}

.load-more-trigger .cat-emoji {
    font-size: 2rem;
    animation: bounce 2s infinite;
    display: block;
    margin-bottom: 0.5rem;
}

.load-more-trigger p {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0;
}

.end-message {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
}

.end-message .cat-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.end-message p {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 992px) {
    .gallery-item {
        width: 45vw;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .gallery-item {
        width: 98vw;
        max-width: 100%;
    }
}

.load-more-container,
.gallery-placeholder {
    width: 100%;
    clear: both;
    display: block;
    position: static;
    text-align: center;
}

.gallery-emoji-circle {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gallery-overlay-content p {
    margin: 0;
    font-weight: 600;
    text-transform: capitalize;
    background: none;
    border-radius: 0;
    color: #fff;
}

/* Gallery Filters */
.gallery-filters {
    background: none !important;
    border: none !important;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.filter-btn,
.filter-btn:focus,
.filter-btn:active,
.filter-btn:visited {
    background: white !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: 0 2px 6px rgba(255, 107, 157, 0.08);
}

.filter-btn:hover,
.filter-btn:focus:hover {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.18);
}

.filter-btn.active,
.filter-btn.active:focus,
.filter-btn.active:active {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.18);
}

@media (max-width: 768px) {
    .filter-buttons {
        gap: 0.3rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .filter-buttons {
        display: flex;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 0.7rem;
        width: 100%;
        padding-bottom: 0.5rem;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE 10+ */
    }
    .filter-buttons::-webkit-scrollbar {
        display: none; /* Chrome/Safari/Webkit */
    }
    .filter-btn {
        flex: 0 0 auto;
        min-width: 120px;
        max-width: 200px;
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
        border-radius: 999px;
        margin: 0;
        box-shadow: 0 2px 8px rgba(255, 107, 157, 0.08);
    }
} 

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary-color);
  background: none;
  border-radius: 0;
  box-shadow: none;
  width: auto;
  height: auto;
}
.contact-icon > i,
.contact-icon > svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: inherit;
} 