/* Pet-Friendly Directory Page - Unique Design */
:root {
    --primary: #7250a8;
    --primary-dark: #5b4086;
    --primary-light: #8a6bc0;
    --secondary: #2cd0ff;
    --accent: #ef4d98;
    --accent-light: #ff6eb5;
    --white: #fff;
    --black: #000;
    --light-bg: #f0f4f9;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body {
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Main Container */
.muttstock-petfriendly-page {
    position: relative;
    width: 100%;
    height: max-content;
    background: var(--light-bg);
    overflow: hidden;
}

/* ===================== */
/* Unique Hero Section */
/* ===================== */
.petfriendly-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff 0%, #f0f4f9 100%);
}

.petfriendly-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 90%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Animated Background Elements */
.petfriendly-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.petfriendly-hero-shape {
    position: absolute;
    transition: transform 0.5s ease;
}

.petfriendly-hero-shape-1 {
    top: 10%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(114, 80, 168, 0.3) 0%, rgba(239, 77, 152, 0.1) 100%);
    border-radius: 62% 38% 46% 54% / 60% 68% 32% 40%;
    animation: floatHeroShape 12s ease-in-out infinite alternate;
    opacity: 0.4;
}

.petfriendly-hero-shape-2 {
    bottom: 15%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(44, 208, 255, 0.2) 0%, rgba(114, 80, 168, 0.1) 100%);
    border-radius: 38% 62% 54% 46% / 40% 32% 68% 60%;
    animation: floatHeroShape 15s ease-in-out infinite alternate-reverse;
    opacity: 0.5;
}

.petfriendly-hero-shape-3 {
    top: 40%;
    left: 40%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(239, 77, 152, 0.2) 0%, rgba(44, 208, 255, 0.1) 100%);
    border-radius: 30% 70% 70% 30% / 30% 52% 48% 70%;
    animation: floatHeroShape 10s ease-in-out infinite alternate;
    opacity: 0.3;
}

.petfriendly-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(114, 80, 168, 0.3) 2px, transparent 2px),
        radial-gradient(rgba(239, 77, 152, 0.3) 2px, transparent 2px);
    background-size: 30px 30px, 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.5;
}

.petfriendly-hero-paws {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.petfriendly-hero-paw {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(114, 80, 168, 0.1);
    animation: floatingPaw 20s linear infinite;
}

.petfriendly-hero-paw:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-duration: 15s;
}

.petfriendly-hero-paw:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-duration: 18s;
    animation-delay: 2s;
}

.petfriendly-hero-paw:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-duration: 20s;
    animation-delay: 5s;
}

.petfriendly-hero-paw:nth-child(4) {
    bottom: 40%;
    right: 25%;
    animation-duration: 25s;
    animation-delay: 7s;
}

.petfriendly-hero-paw:nth-child(5) {
    top: 50%;
    left: 30%;
    animation-duration: 22s;
    animation-delay: 3s;
}

/* Hero Content Left Side */
.petfriendly-hero-content {
    flex: 1;
    max-width: 600px;
    padding: 2rem;
}

.petfriendly-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(114, 80, 168, 0.1);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transform: rotate(-2deg);
}

.petfriendly-hero-badge-icon {
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(239, 77, 152, 0.3);
}

.petfriendly-hero-badge-icon i {
    color: var(--white);
    font-size: 1rem;
    z-index: 2;
}

.petfriendly-hero-badge-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.petfriendly-hero-badge span {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.petfriendly-hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-dark);
    position: relative;
}

.petfriendly-hero-title-line {
    display: block;
    position: relative;
}

.petfriendly-hero-title-highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.petfriendly-hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    border-radius: 4px;
    opacity: 0.3;
}

.petfriendly-hero-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
    position: relative;
}

.petfriendly-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(114, 80, 168, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.petfriendly-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.petfriendly-hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(114, 80, 168, 0.4);
}

.petfriendly-hero-cta:hover::before {
    transform: translateX(100%);
}

/* Hero Visual - Interactive Pet Illustration */
.petfriendly-hero-visual {
    flex: 1;
    max-width: 700px;
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.petfriendly-hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.5s ease;
}

.petfriendly-hero-image-container:hover {
    transform: translateY(-10px) rotate(2deg);
}

.petfriendly-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.petfriendly-hero-image-container:hover .petfriendly-hero-image {
    transform: scale(1.05);
}

.petfriendly-hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 0, 0, 0.5)
    );
}

.petfriendly-hero-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    transform: rotate(-3deg);
}

.petfriendly-hero-image-decorators {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.petfriendly-hero-decorator {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px dashed var(--accent);
    border-radius: 15px;
    transform: rotate(45deg);
    opacity: 0.4;
    transition: all 0.5s ease;
}

.petfriendly-hero-decorator-1 {
    top: -60px;
    right: -60px;
}

.petfriendly-hero-decorator-2 {
    bottom: -60px;
    left: -60px;
}

.petfriendly-hero-image-container:hover .petfriendly-hero-decorator {
    transform: rotate(60deg);
    opacity: 0.6;
}

/* Scroll Indicator at bottom of hero */
.petfriendly-scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
}

.petfriendly-scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.petfriendly-scroll-indicator span {
    font-size: 1rem;
    font-weight: 500;
}

.petfriendly-scroll-arrow {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite;
}

.petfriendly-scroll-arrow i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===================== */
/* Category Navigation - Hexagonal Grid */
/* ===================== */
.petfriendly-categories {
    position: relative;
    padding: 8rem 5%;
    background: linear-gradient(135deg, #fff 0%, #f5f7fa 100%);
}

.petfriendly-categories-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.petfriendly-categories-header {
    text-align: center;
    margin-bottom: 4rem;
}

.petfriendly-categories-title {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.petfriendly-categories-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.petfriendly-categories-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Hexagonal Grid */
.petfriendly-hex-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

.petfriendly-hex-row {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.petfriendly-hex {
    position: relative;
    width: 180px;
    height: 210px;
    margin: 0 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.petfriendly-hex:hover {
    transform: translateY(-10px);
    z-index: 2;
}

.petfriendly-hex-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotate(120deg);
    overflow: hidden;
    visibility: hidden;
    border-radius: 20px;
}

.petfriendly-hex-inner-2 {
    width: 100%;
    height: 100%;
    transform: rotate(-60deg);
    overflow: hidden;
    visibility: hidden;
}

.petfriendly-hex-content {
    width: 100%;
    height: 100%;
    transform: rotate(-60deg);
    visibility: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.petfriendly-hex:hover .petfriendly-hex-content {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.petfriendly-hex-icon {
    width: 60px;
    height: 60px;
    background: rgba(114, 80, 168, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.petfriendly-hex:hover .petfriendly-hex-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(15deg);
}

.petfriendly-hex-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.petfriendly-hex:hover .petfriendly-hex-icon i {
    color: var(--white);
}

.petfriendly-hex-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    transition: all 0.3s ease;
}

.petfriendly-hex:hover .petfriendly-hex-title {
    color: var(--white);
}

.petfriendly-hex-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(114, 80, 168, 0.1);
    transition: all 0.3s ease;
}

.petfriendly-hex:hover .petfriendly-hex-number {
    color: rgba(255, 255, 255, 0.2);
}

/* ===================== */
/* Directory Listings Section */
/* ===================== */
.petfriendly-directory {
    position: relative;
    padding: 8rem 5%;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f4f9 100%);
}

.petfriendly-directory-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Filter & Search */
.petfriendly-directory-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: center;
    justify-content: space-between;
}

.petfriendly-directory-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.petfriendly-directory-category {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid rgba(114, 80, 168, 0.1);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.petfriendly-directory-category.active,
.petfriendly-directory-category:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(114, 80, 168, 0.2);
}

.petfriendly-directory-search {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.petfriendly-directory-search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    background: white;
    border: 2px solid rgba(114, 80, 168, 0.1);
    border-radius: 30px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.petfriendly-directory-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(114, 80, 168, 0.1);
}

.petfriendly-directory-search-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--primary);
}

/* Directory Content */
.petfriendly-directory-content {
    position: relative;
}

.petfriendly-directory-category-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.petfriendly-directory-category-content.active {
    display: block;
}

/* Table Layout */
.petfriendly-directory-table-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.petfriendly-directory-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.petfriendly-directory-table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.petfriendly-directory-table th {
    padding: 1.5rem;
    color: var(--white);
    font-weight: 600;
    text-align: left;
    position: relative;
}

.petfriendly-directory-table th:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.petfriendly-directory-table th:first-child {
    border-top-left-radius: 20px;
}

.petfriendly-directory-table th:last-child {
    border-top-right-radius: 20px;
}

.petfriendly-directory-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(114, 80, 168, 0.05);
    transition: all 0.3s ease;
}

.petfriendly-directory-table tr {
    transition: all 0.3s ease;
}

.petfriendly-directory-table tr:hover {
    background: rgba(114, 80, 168, 0.05);
}

.petfriendly-directory-table-name {
    font-weight: 600;
    color: var(--primary);
}

.petfriendly-directory-table-type {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(114, 80, 168, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.petfriendly-directory-table-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.petfriendly-directory-table-link:hover {
    color: var(--primary);
}

.petfriendly-directory-table-link i {
    transition: transform 0.3s ease;
}

.petfriendly-directory-table-link:hover i {
    transform: translateX(5px);
}

/* Grid Layout */
.petfriendly-directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.petfriendly-directory-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(114, 80, 168, 0.05);
}

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

.petfriendly-directory-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(114, 80, 168, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.petfriendly-directory-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.petfriendly-directory-card-body {
    padding: 1.5rem;
}

.petfriendly-directory-card-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.petfriendly-directory-card-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.petfriendly-directory-card-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.petfriendly-directory-card-item span {
    color: #666;
    line-height: 1.5;
}

.petfriendly-directory-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.petfriendly-directory-card-label {
    padding: 0.5rem 1rem;
    background: rgba(114, 80, 168, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.petfriendly-directory-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.petfriendly-directory-card-btn:hover {
    color: var(--primary);
}

.petfriendly-directory-card-btn i {
    transition: transform 0.3s ease;
}

.petfriendly-directory-card-btn:hover i {
    transform: translateX(5px);
}

/* Empty State */
.petfriendly-directory-empty {
    display: none;
    padding: 4rem;
    text-align: center;
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.petfriendly-directory-empty-icon {
    font-size: 5rem;
    color: rgba(114, 80, 168, 0.2);
    margin-bottom: 2rem;
}

.petfriendly-directory-empty-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.petfriendly-directory-empty-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.petfriendly-directory-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.petfriendly-directory-empty-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Calendar Styles */
.petfriendly-directory-calendar-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
}

.petfriendly-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.petfriendly-calendar-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.calendar-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.petfriendly-calendar {
    padding: 1.5rem;
}

.calendar-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 5px;
}

.calendar-weekday {
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    padding: 0.5rem;
}

.calendar-cell {
    position: relative;
    min-height: 80px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.calendar-cell.empty {
    background: transparent;
}

.calendar-cell.has-events {
    background: rgba(114, 80, 168, 0.05);
}

.calendar-cell.today {
    box-shadow: 0 0 0 2px var(--accent);
}

.day-number {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.today .day-number {
    background: var(--accent);
    color: white;
    border-radius: 50%;
}

.day-events {
    margin-top: 25px;
    font-size: 0.8rem;
}

.calendar-event {
    position: relative;
    padding: 3px 5px;
    margin-bottom: 3px;
    background: var(--primary);
    color: white;
    border-radius: 3px;
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.event-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    color: #333;
    font-size: 0.85rem;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.calendar-event:hover .event-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}

.tooltip-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.tooltip-link:hover {
    text-decoration: underline;
}

.petfriendly-events-table-title {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-dark);
    margin: 0;
}

/* Subcategory Styles */
.category-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.category-title {
    padding: 1rem;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.subcategory-header {
    background: rgba(114, 80, 168, 0.1);
}

.subcategory-title {
    padding: 0.7rem 1rem;
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 600;
}

/* Mobile Responsive Calendar */
@media screen and (max-width: 768px) {
    .calendar-cell {
        min-height: 60px;
        padding: 0.3rem;
    }

    .day-events {
        margin-top: 20px;
        max-height: 40px;
        overflow-y: auto;
    }

    .calendar-event {
        font-size: 0.7rem;
        padding: 2px 4px;
    }
}



/* ===================== */
/* FAQ Section */
/* ===================== */
.petfriendly-faq-section {
    position: relative;
    padding: 8rem 5%;
    background: white;
}

.petfriendly-faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.petfriendly-faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.petfriendly-faq-title {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.petfriendly-faq-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.petfriendly-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.petfriendly-faq-item {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.petfriendly-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.petfriendly-faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.petfriendly-faq-question:hover {
    color: var(--primary);
}

.petfriendly-faq-icon {
    min-width: 30px;
    min-height: 30px;
    background: rgba(114, 80, 168, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.petfriendly-faq-icon i {
    color: var(--primary);
    transition: all 0.3s ease;
}

.petfriendly-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.petfriendly-faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.petfriendly-faq-item.active .petfriendly-faq-icon {
    background: var(--primary);
}

.petfriendly-faq-item.active .petfriendly-faq-icon i {
    color: white;
    transform: rotate(45deg);
}

.petfriendly-faq-item.active .petfriendly-faq-answer {
    max-height: 1000px;
}

/* ===================== */
/* CTA Section */
/* ===================== */
.petfriendly-cta-section {
    position: relative;
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.petfriendly-cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.petfriendly-cta-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.petfriendly-cta-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.petfriendly-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.petfriendly-cta-btn {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.petfriendly-cta-btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 30px rgba(239, 77, 152, 0.3);
}

.petfriendly-cta-btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(239, 77, 152, 0.4);
}

.petfriendly-cta-btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.petfriendly-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* ===================== */
/* Animations */
/* ===================== */
@keyframes floatHeroShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes floatingPaw {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translate(100px, -100px) rotate(45deg);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

/* ===================== */
/* Responsive Styles */
/* ===================== */
@media screen and (max-width: 1200px) {
    .petfriendly-hero-inner {
        flex-direction: column;
        gap: 3rem;
    }

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

    .petfriendly-hero-image-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .petfriendly-submit-container {
        flex-direction: column;
    }

    .petfriendly-submit-content,
    .petfriendly-submit-form {
        max-width: 100%;
    }

    .petfriendly-map-overlay {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    }

    .petfriendly-map-content {
        width: 100%;
        height: auto;
        top: auto;
        bottom: 0;
        padding: 3rem;
    }
}

@media screen and (max-width: 992px) {
    .petfriendly-hero {
        height: auto;
        padding: 6rem 0;
    }

    .petfriendly-hero-title {
        font-size: 3.5rem;
    }

    .petfriendly-categories-title,
    .petfriendly-featured-title,
    .petfriendly-directory-title,
    .petfriendly-faq-title,
    .petfriendly-cta-title {
        font-size: 2.5rem;
    }

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

    .petfriendly-directory-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .petfriendly-directory-search {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .petfriendly-hero-title {
        font-size: 3rem;
    }

    .petfriendly-hex-row:nth-child(even) {
        margin-left: 0;
    }

    .petfriendly-hex {
        width: 150px;
        height: 180px;
    }

    .petfriendly-featured-card {
        width: 280px;
    }

}

@media screen and (max-width: 576px) {
    .petfriendly-hero-content {
        margin-top: 125px;
    }

    .petfriendly-hero-visual {
        display: none;
    }
    
    .petfriendly-hero-title {
        font-size: 2.5rem;
    }

    .petfriendly-categories-title,
    .petfriendly-featured-title,
    .petfriendly-directory-title,
    .petfriendly-faq-title,
    .petfriendly-cta-title {
        font-size: 2rem;
    }

    .petfriendly-hero-badge,
    .petfriendly-submit-badge {
        padding: 0.5rem 1rem;
    }

    .petfriendly-hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .petfriendly-directory-table-container {
        overflow-x: auto;
    }

    .petfriendly-directory-table {
        min-width: 700px;
    }

    .petfriendly-submit-form {
        padding: 2rem;
    }

    .petfriendly-map-content {
        padding: 2rem;
    }
}


/* More Events Indicator */
.more-events {
    font-size: 0.7rem;
    color: var(--primary);
    text-align: center;
    padding: 2px;
    background: rgba(114, 80, 168, 0.1);
    border-radius: 3px;
    margin-top: 2px;
}

/* Today's Event Indicator */
.today.has-events .day-number {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    box-shadow: 0 3px 6px rgba(239, 77, 152, 0.2);
}

/* Event Date Display in Tables */
.petfriendly-directory-table td:nth-child(3) {
    font-weight: 500;
    color: var(--primary-dark);
}

/* Upcoming Events Header */
.category-title:contains("Upcoming Events") {
    position: relative;
}

.category-title:contains("Upcoming Events")::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 3px rgba(239, 77, 152, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 77, 152, 0.5);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(239, 77, 152, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 77, 152, 0);
    }
}


/* Event Modal Styles */
.petfriendly-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.petfriendly-modal.active {
    opacity: 1;
    visibility: visible;
}

.petfriendly-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.petfriendly-modal-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.petfriendly-modal.active .petfriendly-modal-container {
    transform: translateY(0);
}

.petfriendly-modal-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.petfriendly-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.petfriendly-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.petfriendly-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.petfriendly-modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.petfriendly-modal-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #555;
}

.petfriendly-modal-detail i {
    width: 30px;
    height: 30px;
    background: rgba(114, 80, 168, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.petfriendly-modal-detail a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.petfriendly-modal-detail a:hover {
    color: var(--primary);
}

.petfriendly-modal-footer {
    padding: 1rem 1.5rem;
    background: #f9f9f9;
    display: flex;
    justify-content: flex-end;
}

.petfriendly-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.petfriendly-modal-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* Event Cards in Modal */
.petfriendly-modal-event-card {
    padding: 15px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.petfriendly-modal-event-card:hover {
    background: rgba(114, 80, 168, 0.05);
}

.petfriendly-modal-event-card h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.petfriendly-modal-separator {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 15px 0 5px;
}

/* Highlighted row in table */
.highlighted-row {
    background: rgba(114, 80, 168, 0.1) !important;
    animation: highlight-pulse 3s ease-in-out;
}

@keyframes highlight-pulse {
    0%, 100% { background: rgba(114, 80, 168, 0.1) !important; }
    50% { background: rgba(239, 77, 152, 0.1) !important; }
}