/* Clean CSS for Go Baby Grow - Based on oldsite.html */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    font-family: 'Baloo 2', cursive;
    background: linear-gradient(135deg, 
        #E0F2FE 0%,     /* Sky blue */
        #FCE7F3 25%,    /* Pink */
        #FEF3C7 50%,    /* Amber */
        #DBEAFE 75%,    /* Blue */
        #E0F2FE 100%    /* Back to sky blue */
    );
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    min-height: 100vh;
    position: relative;
}

/* Animated gradient background */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtle floating particles effect */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 178, 178, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(129, 199, 132, 0.1) 0%, transparent 50%);
    animation: floatParticles 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatParticles {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #2D3748;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-family: 'Baloo 2', cursive;
    font-size: 1rem;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 1rem;
}

a {
    color: #6366F1;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: #FF3B7C;
    transform: translateY(-1px);
}

/* Layout */
.wrapper {
    margin: 0 auto;
    padding: 0;
}

.page-content {
    flex: 1;
    padding-top: 80px;
    position: relative;
    z-index: 2;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    height: 80px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    transform-origin: top;
    will-change: transform, height;
}

.navbar.shrunk {
    height: 70px;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar.shrunk .navbar-brand .brand-link {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
}

.navbar.shrunk .navbar-brand .brand-separator {
    font-size: 1.4rem;
}

.navbar.shrunk .navbar-brand .brand-explore {
    font-size: 1rem;
}


.navbar.shrunk .navbar-center-group {
    gap: 21px;
}

.navbar.shrunk .blog-button {
    padding: 0.6rem 1.75rem;
    font-size: 0.85rem;
}

/* Filters merge into navbar on scroll */
.navbar.shrunk .navbar-center-group {
    display: none;
}

.navbar.shrunk .navbar-container {
    grid-template-columns: 1fr 3fr 1fr;
}

.navbar.shrunk .navbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar.shrunk .navbar-menu .navbar-center-group {
    display: flex;
    gap: 1.5rem;
}

.navbar.shrunk .navbar-menu .navbar-center-group .navbar-item,
.navbar.shrunk .navbar-menu .navbar-center-group .dropdown-toggle {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar.shrunk .navbar-menu .navbar-center-group .navbar-item:hover,
.navbar.shrunk .navbar-menu .navbar-center-group .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #1a202c;
}

.navbar-container {
    margin: 0;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand .brand-link {
    font-size: 2rem;
    font-weight: 900;
    color: #1a202c;
    font-family: 'Baloo 2', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    line-height: 1.2;
    background: linear-gradient(
        120deg, 
        #FF3B7C 0%,      /* Vibrant pink-red */
        #FF9A56 50%,     /* Coral */
        #06D6A0 100%     /* Mint */
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Subtle fade-in animation on home page */
body.home .navbar-brand .brand-link {
    animation: logoFadeIn 0.6s ease-out;
}

.navbar-brand .brand-link:hover {
    background-position: right center;
    transform: translateY(-1px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-brand .brand-separator {
    font-size: 1.8rem;
    color: #E5E7EB;
    font-weight: 300;
}

.navbar-brand .brand-explore {
    font-size: 1.15rem;
    font-weight: 600;
    color: #4B5563;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.navbar-brand .brand-explore:hover {
    color: #FF3B7C;
}

.navbar-center-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px; /* Fibonacci: 21px */
    margin: 0 auto;
}

.navbar-center-group .navbar-item {
    font-family: 'Baloo 2', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1F2937;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.navbar-center-group .navbar-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #FF3B7C;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.navbar-center-group .navbar-item:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 59, 124, 0.3);
}

.navbar-center-group .navbar-item:hover::before {
    opacity: 1;
}

.navbar-center-group .dropdown-toggle {
    font-family: 'Baloo 2', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1F2937;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.navbar-center-group .dropdown-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #FF3B7C;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.navbar-center-group .dropdown-toggle:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 59, 124, 0.3);
}

.navbar-center-group .dropdown-toggle:hover::before {
    opacity: 1;
}

.navbar-right-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    flex-shrink: 0;
}

.blog-button {
    background: linear-gradient(135deg, #FF3B7C 0%, #FF6B9D 50%, #FF3B7C 100%);
    background-size: 200% auto;
    color: white !important;
    padding: 0.7rem 2.25rem;
    font-family: 'Baloo 2', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 30px;
    box-shadow: 0 6px 24px rgba(255, 59, 124, 0.45);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-left: auto;
    min-width: auto;
    text-align: center;
    display: inline-flex;
    align-items: center;
}

.blog-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.blog-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(255, 59, 124, 0.65);
    background-position: right center;
}

.blog-button:hover::before {
    left: 100%;
}

.blog-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Search Button */
.search-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #06D6A0;
    color: white !important;
    padding: 0.7rem 1.5rem;
    font-family: 'Baloo 2', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(6, 214, 160, 0.35);
    margin-right: 0.75rem;
    position: relative;
    overflow: hidden;
}

.search-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.search-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(6, 214, 160, 0.5);
    background: #05c090;
    color: white !important;
}

.search-button:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.search-button:active {
    transform: translateY(-1px) scale(1.02);
}

.search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.search-button:hover::before {
    left: 100%;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal.active {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.search-modal-content {
    position: relative;
    max-width: 800px;
    width: 90%;
    margin: auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.search-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #FF3B7C;
    position: relative;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 0 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-icon {
    width: 24px;
    height: 24px;
    color: #6366F1;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1.25rem 1rem;
    font-family: 'Baloo 2', cursive;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    background: transparent;
}

.search-input::placeholder {
    color: #9CA3AF;
    font-weight: 500;
}

.search-clear {
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: none;
}

.search-clear.active {
    display: block;
}

.search-clear:hover {
    background: #F3F4F6;
    color: #FF3B7C;
    transform: scale(1.1);
}

.search-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: rotate(90deg) scale(1.1);
}

.search-modal-body {
    max-height: 500px;
    overflow-y: auto;
    padding: 2rem;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-suggestions h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    font-family: 'Baloo 2', cursive;
}

.search-suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.suggestion-tag {
    background: linear-gradient(135deg, rgba(255, 59, 124, 0.08), rgba(6, 214, 160, 0.08));
    color: #1F2937;
    border: 2px solid rgba(255, 59, 124, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.suggestion-tag:hover {
    background: linear-gradient(135deg, #FF3B7C, #FF9A56);
    color: white;
    border-color: transparent;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 59, 124, 0.3);
}

.search-result-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-result-item:hover {
    border-color: #FF3B7C;
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(255, 59, 124, 0.15);
}

.search-result-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-family: 'Baloo 2', cursive;
}

.search-result-title a {
    color: inherit;
    text-decoration: none;
}

.search-result-title a:hover {
    color: #FF3B7C;
}

.search-result-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.search-result-tag {
    background: linear-gradient(135deg, #6366F1, #A855F7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.search-result-excerpt {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.search-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.search-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #E5E7EB;
    border-top-color: #FF3B7C;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.search-loading p {
    margin-top: 1rem;
    color: #6B7280;
    font-weight: 600;
    font-size: 1rem;
}

.search-no-results {
    text-align: center;
    padding: 3rem 2rem;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.search-no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-family: 'Baloo 2', cursive;
}

.search-no-results p {
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.browse-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF3B7C, #FF9A56);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 59, 124, 0.3);
}

.browse-all-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 59, 124, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.navbar-items {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.navbar-item {
    font-weight: 700;
    font-size: 1rem;
    color: #1F2937;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Baloo 2', cursive;
    position: relative;
    letter-spacing: 0.01em;
}

.navbar-item:hover {
    color: #FF3B7C;
    border-bottom-color: #FF3B7C;
    transform: translateY(-1px);
    background: rgba(255, 59, 124, 0.08);
}

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

.dropdown-toggle {
    background: none;
    border: none;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 1rem;
    color: #1F2937;
    cursor: pointer;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.01em;
}

.dropdown-toggle:hover {
    color: #FF3B7C;
    border-bottom-color: #FF3B7C;
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(255, 59, 124, 0.08), rgba(255, 154, 86, 0.08));
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

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

.dropdown-item {
    display: block;
    padding: 0.85rem 1.25rem;
    color: #1F2937;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    margin: 0.25rem 0.5rem;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FF3B7C, #FF9A56);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    z-index: -1;
}

.dropdown-item:hover {
    color: white;
    transform: translateX(6px);
    box-shadow: 0 2px 8px rgba(255, 59, 124, 0.25);
}

.dropdown-item:hover::before {
    opacity: 1;
}

/* Mobile menu */
.navbar-burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.navbar-burger span {
    width: 25px;
    height: 3px;
    background: #2D3748;
    margin: 3px 0;
    transition: 0.3s;
}

.navbar-burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.navbar-burger.active span:nth-child(2) {
    opacity: 0;
}

.navbar-burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile menu overlay */
.navbar-menu {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .navbar-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-center-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .navbar-center-group .navbar-item {
        width: 100%;
        text-align: left;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .navbar-right-group {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1rem;
        margin-left: 0;
        gap: 0.75rem;
    }
    
    .search-button {
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }
    
    .blog-button {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
    
    .navbar-burger {
        display: flex;
    }
}

/* ===========================
   UNIFIED HERO SECTION
   =========================== */

.hero-section-unified {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(255, 248, 225, 0.4) 0%,
        rgba(232, 245, 232, 0.4) 50%,
        rgba(240, 248, 255, 0.4) 100%
    );
}

.hero-container-unified {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Left Column - Text Content */
.hero-text-column {
    z-index: 2;
}

.hero-title-unified {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    letter-spacing: -2px;
    color: #1a202c;
    text-align: left;
}

.hero-highlight {
    color: #4DB6AC;
    font-weight: 900;
    display: inline-block;
}

/* Activities Badge */
.activities-badge {
    flex-shrink: 0;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid #4DB6AC;
    transition: all 0.3s ease;
}

.activities-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(77, 182, 172, 0.3);
}

.badge-number {
    font-size: 3rem;
    font-weight: 900;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-label {
    font-size: 0.9rem;
    color: #4A5568;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Subtitle */
.hero-subtitle-unified {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2D3748;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-subtitle-unified strong {
    color: #1a202c;
    font-weight: 700;
}

/* Stats */
.hero-stats-unified {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item-unified {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Special styling for activities stat */
.stat-item-unified.activities-stat {
    border: 3px solid #4DB6AC;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.stat-item-unified.activities-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(77, 182, 172, 0.3);
}

.stat-item-unified.activities-stat .stat-value {
    font-size: 2.5rem;
    color: #1a202c;
}

.stat-item-unified.activities-stat .stat-text {
    color: #4A5568;
    font-weight: 700;
}

.stat-item-unified:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.85rem;
    color: #4A5568;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* CTA */
.hero-cta-unified {
    margin-top: 2rem;
}

.cta-button-unified {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    background: linear-gradient(135deg, #FF6B8A, #F5576C);
    color: white;
    border-radius: 50px;
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 138, 0.4);
    letter-spacing: 1px;
}

.cta-button-unified:hover {
    background: linear-gradient(135deg, #F5576C, #FF6B8A);
    color: white !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 138, 0.5);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #4A5568;
    font-weight: 500;
}

/* Right Column - Image */
.hero-image-column {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.hero-image-unified {
    max-width: 90%;
    max-height: 90%;
    height: auto;
    object-fit: contain;
    animation: fadeInScale 1.5s ease-out;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Keep old hero section for backwards compatibility */
.hero-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: block;
    text-align: center;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.12) 0%,    /* Blue */
        rgba(236, 72, 153, 0.12) 35%,   /* Pink */
        rgba(251, 146, 60, 0.12) 70%,   /* Orange */
        rgba(139, 92, 246, 0.12) 100%   /* Purple */
    );
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.hero-content {
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* Hero Title Wrapper with Activities Count */
.hero-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    letter-spacing: -2px;
    color: #1a202c;
    text-align: left;
    flex: 1;
}

/* Activities Count on the Right */
.activities-count {
    flex-shrink: 0;
    text-align: center;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 3px solid #4DB6AC;
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 900;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-small {
    font-size: 1rem;
    color: #4A5568;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-highlight {
    color: #4DB6AC;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #2D3748;
    text-align: center;
}

.hero-subtitle strong {
    color: #1a202c;
    font-weight: 700;
}

/* Hero Stats Bubbles */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-bubble {
    background: white;
    padding: 1.25rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.stat-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(77, 182, 172, 0.3);
    border-color: rgba(77, 182, 172, 0.5);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #2D3748;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-cta .cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #FF6B8A, #F5576C);
    color: white;
    border-radius: 50px;
    font-family: 'Baloo 2', cursive;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 138, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta .cta-button:hover {
    background: linear-gradient(135deg, #F5576C, #FF6B8A);
    color: white !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 138, 0.5);
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #4A5568;
    font-weight: 500;
}

/* Larger Hero Image */
.hero-image-large {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 600px;
    max-height: 800px;
    background-image: url('https://images.unsplash.com/photo-1544717297-fa95b6e1e0d9?w=1920&h=1080&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    margin-top: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.hero-main-image-large {
    max-width: 90%;
    height: auto;
    max-height: 90%;
    animation: fadeInBounce 2s ease-out;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Keep old hero image styles for backwards compatibility */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    background-image: url('https://images.unsplash.com/photo-1544717297-fa95b6e1e0d9?w=1920&h=1080&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    margin-top: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    animation: fadeInBounce 2s ease-out;
    object-fit: contain;
}

.hero-image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.9);
    
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.baby-icon {
    font-size: 8rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: floatAround 8s ease-in-out infinite;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.floating-shape:hover {
    opacity: 1;
}

/* Fish icon variations - swimming animation */
.floating-shape.fish-1 {
    width: 60px;
    height: 60px;
    background-image: url('/assets/images/icons-fish.png');
    top: 15%;
    left: 8%;
    animation: swim 6s ease-in-out infinite;
    animation-delay: 0s;
}

.floating-shape.fish-2 {
    width: 45px;
    height: 45px;
    background-image: url('/assets/images/icons-fish.png');
    top: 70%;
    right: 12%;
    animation: swim 5s ease-in-out infinite;
    animation-delay: 2s;
}

.floating-shape.fish-3 {
    width: 50px;
    height: 50px;
    background-image: url('/assets/images/icons-fish.png');
    bottom: 25%;
    left: 15%;
    animation: swim 7s ease-in-out infinite;
    animation-delay: 4s;
}

/* Crisp icon variations */
.floating-shape.crisp-1 {
    width: 85px;
    height: 85px;
    background-image: url('/assets/images/icons-crisp.png');
    top: 40%;
    left: 5%;
    animation-delay: 1.5s;
}

.floating-shape.crisp-2 {
    width: 70px;
    height: 70px;
    background-image: url('/assets/images/icons-crisp.png');
    top: 25%;
    right: 20%;
    animation-delay: 4.5s;
}

.floating-shape.crisp-3 {
    width: 78px;
    height: 78px;
    background-image: url('/assets/images/icons-crisp.png');
    bottom: 15%;
    right: 8%;
    animation-delay: 7.5s;
}

/* Hill icon variations */
.floating-shape.hill-1 {
    width: 65px;
    height: 65px;
    background-image: url('/assets/images/icons-hill.png');
    top: 55%;
    right: 25%;
    animation-delay: 2s;
}

.floating-shape.hill-2 {
    width: 42px;
    height: 42px;
    background-image: url('/assets/images/icons-hill.png');
    top: 80%;
    left: 25%;
    animation-delay: 5s;
}

.floating-shape.hill-3 {
    width: 52px;
    height: 52px;
    background-image: url('/assets/images/icons-hill.png');
    top: 10%;
    right: 5%;
    animation-delay: 8s;
}

@keyframes floatAround {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(5deg) scale(1.05);
    }
    50% { 
        transform: translateY(-25px) rotate(-5deg) scale(1.1);
    }
    75% {
        transform: translateY(-15px) rotate(3deg) scale(1.05);
    }
}

/* Swimming animation for fish */
@keyframes swim {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    15% {
        transform: translateX(20px) translateY(-10px) rotate(-3deg);
    }
    30% {
        transform: translateX(35px) translateY(-5px) rotate(2deg);
    }
    45% {
        transform: translateX(50px) translateY(-15px) rotate(-2deg);
    }
    60% {
        transform: translateX(35px) translateY(-20px) rotate(3deg);
    }
    75% {
        transform: translateX(20px) translateY(-10px) rotate(-1deg);
    }
    90% {
        transform: translateX(5px) translateY(-5px) rotate(1deg);
    }
    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
}

/* Subtle fade-in animation for logo on home page */
@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Popular Categories */
.popular-categories {
    padding: 6rem 1rem;
}

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

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.section-intro {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.section-header p {
    font-size: 1.125rem;
    color: #1a202c;
    margin-bottom: 2rem;
}

.view-all-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 50px;
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.view-all-btn:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

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

/* Modern Category Cards with Prominent Images */
.category-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    position: relative;
}

.category-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Category Image - Now Much Larger */
.category-image-modern {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.15), rgba(77, 182, 172, 0.15));
}

.category-img-modern {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-modern:hover .category-img-modern {
    transform: scale(1.05);
}

/* Subtle Overlay for Better Text Contrast */
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.category-card-modern:hover .category-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

/* Category Content */
.category-content-modern {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
}

.category-content-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
    transition: color 0.3s ease;
}

.category-card-modern:hover .category-content-modern h3 {
    color: #4DB6AC;
}

.category-content-modern p {
    color: #2D3748;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.category-microtext-modern {
    display: block;
    font-size: 0.85rem;
    color: #718096;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(113, 128, 150, 0.2);
    line-height: 1.5;
    font-weight: 500;
}

/* Add a subtle shine effect on hover */
.category-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.category-card-modern:hover::before {
    left: 100%;
}

/* Keep old styles for backwards compatibility */
.category-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

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

.category-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.1), rgba(77, 182, 172, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image-wrapper {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    transform: translateY(-5px);
}

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

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2D3748;
}

.category-card p {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.category-microtext {
    display: block;
    font-size: 0.8rem;
    color: #718096;
    font-style: italic;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(113, 128, 150, 0.2);
    line-height: 1.4;
    font-weight: 500;
}

/* Testimonial Section */
.testimonial-section {
    padding: 6rem 1rem;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B8A, #4DB6AC);
    
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    color: white;
    font-size: 1.25rem;
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #2D3748;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #4A5568;
}

/* Why Section */
.why-section {
    background: linear-gradient(135deg, 
        #ec4899 0%,     /* Pink */
        #3b82f6 35%,    /* Blue */
        #f59e0b 70%,    /* Amber */
        #8b5cf6 100%    /* Purple */
    );
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.why-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.feature-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 1.5rem;
    
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24, #ec4899);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
    font-weight: 600;
}

.feature-item p {
    color: #2D3748;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0;
    align-items: start;
    padding-bottom: 0;
}

/* Remove extra space after last row */
.activities-grid::after {
    content: '';
    display: block;
    height: 0;
    margin: 0;
    padding: 0;
}

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

.activities-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.activities-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.activities-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.activities-grid.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* Clean, data-rich activity cards */
.activity-card {
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    margin-bottom: 0;
}

.activity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #cbd5e0;
}

/* Floating Activity Icon */
.floating-activity-icon {
    position: absolute;
    top: 13px; /* Fibonacci: 13px */
    right: 13px; /* Fibonacci: 13px */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    width: 34px; /* Fibonacci: 34px */
    height: 34px; /* Fibonacci: 34px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.floating-activity-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Floating Age Badge */
.floating-age-badge {
    position: absolute;
    top: 13px; /* Fibonacci: 13px */
    left: 13px; /* Fibonacci: 13px */
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.floating-age-badge:hover {
    transform: scale(1.05);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

/* Floating Type Badge */
.floating-type-badge {
    position: absolute;
    top: 13px; /* Fibonacci: 13px */
    right: 13px; /* Positioned on the right side */
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 5px 10px; /* Fibonacci: 5px vertical */
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px; /* Fibonacci: 4px */
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.floating-type-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Floating Featured Badge */
.floating-featured-badge {
    position: absolute;
    top: 13px; /* Fibonacci: 13px */
    left: 13px; /* Fibonacci: 13px */
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 5px 8px; /* Fibonacci: 5px vertical, 8px horizontal */
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px; /* Fibonacci: 4px */
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* When both age and featured badges are present, stack them */
.activity-image:has(.floating-age-badge) .floating-featured-badge {
    top: 55px; /* Position below age badge */
}

.card-content {
    padding: 1rem 1rem 4rem 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.activity-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A202C;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.activity-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.activity-title a:hover {
    color: #4DB6AC;
}

.activity-description {
    font-size: 0.9rem;
    color: #4A5568;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 400;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0;
    border-top: 1px dashed #e2e8f0;
    padding-top: 0.75rem;
}

.info-item {
    background-color: #f7fafc;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e2e8f0;
}

.info-label {
    font-size: 0.75rem;
    color: #4A5568;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: 0.8px;
}

.info-value {
    font-size: 0.9rem;
    color: #2D3748;
    font-weight: 500;
}

.address-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
}

.address-label {
    font-size: 0.75rem;
    color: #718096;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.address-text {
    font-size: 0.9rem;
    color: #2D3748;
    line-height: 1.5;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    border-top: 1px dashed #e2e8f0;
    padding-top: 1.5rem;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background-color: #e6fffa;
    color: #38b2ac;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid #b2f5ea;
}

.contact-item:hover {
    background-color: #b2f5ea;
    color: #2d3748;
}

.contact-icon {
    font-size: 1rem;
}

.facilities-section {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    border-top: 1px dashed #e2e8f0;
    padding-top: 1.5rem;
}

.facility-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background-color: #e0e7ff;
    color: #4c51bf;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #c3dafe;
}

.facility-icon {
    font-size: 1rem;
}

.card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
    width: 100%;
    margin-bottom: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.view-details-btn, .website-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.view-details-btn {
    background: linear-gradient(135deg, #4DB6AC, #2D3748);
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.view-details-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.view-details-btn:hover::before {
    left: 100%;
}

.view-details-btn:hover {
    background: linear-gradient(135deg, #3a9b8a, #1A202C);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(77, 182, 172, 0.4);
    color: white;
}

.website-btn {
    background: linear-gradient(135deg, #f7fafc, #e2e8f0);
    color: #2D3748;
    border: 1px solid #cbd5e0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.website-btn:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    color: #1A202C;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.activity-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2D3748;
    font-weight: 600;
    font-family: 'Baloo 2', cursive;
}

.activity-card h3 a {
    color: inherit;
    text-decoration: none;
}

.activity-card h3 a:hover {
    color: #FF6B8A;
}

.activity-excerpt {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #718096;
}

.activity-type {
    background: rgba(164, 211, 211, 0.2);
    color: #7CAEB3;
    padding: 0.25rem 0.75rem;
    
    font-weight: 600;
    font-size: 0.8rem;
}

.activity-location {
    color: #4A5568;
}

/* CTA Section */
.cta-section {
    padding: 6rem 1rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.cta-content p {
    font-size: 1.125rem;
    color: #2D3748;
    margin-bottom: 3rem;
}

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

.cta-button {
    padding: 1rem 2rem;
    
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #db2777, #f59e0b);
    color: white !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #2D3748;
    border: 2px solid #3b82f6;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Footer - Friendly & Trustworthy Design */
.site-footer {
    background: linear-gradient(135deg, #E8F5E8 0%, #FFF8E1 50%, #F0F8FF 100%);
    color: #2D3748;
    padding: 4rem 0 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ec4899 0%, #3b82f6 33%, #f59e0b 66%, #8b5cf6 100%);
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}

.site-footer .wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer About Section */
.footer-about {
    padding-right: 2rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Baloo 2', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(
        135deg, 
        #FF3B7C 0%,      /* Vibrant pink-red */
        #FF9A56 25%,     /* Coral orange */
        #FFD166 50%,     /* Sunny yellow */
        #06D6A0 75%,     /* Fresh mint green */
        #6366F1 100%     /* Bright indigo */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Trust Badges */
.footer-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    border: 2px solid rgba(77, 182, 172, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #4DB6AC;
    transform: translateX(4px) scale(1.02);
    box-shadow: 0 4px 16px rgba(77, 182, 172, 0.2);
}

.badge-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.15), rgba(77, 182, 172, 0.15));
    border-radius: 10px;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2D3748;
}

/* Footer Sections */
.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #2D3748;
    font-family: 'Baloo 2', cursive;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #3b82f6);
    border-radius: 2px;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #4A5568;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-weight: 500;
}

.footer-section ul li a::before {
    content: '🌟';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.footer-section ul li a:hover {
    color: #FF6B8A;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: -18px;
}

/* Footer Contact */
.footer-contact-info {
    margin-bottom: 1.5rem;
}

.footer-contact-info p {
    color: #4A5568;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-contact-info strong {
    color: #FF6B8A;
    font-weight: 700;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(77, 182, 172, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #FFB74D;
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 183, 77, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem 0;
    margin-top: 0;
    border-top: 2px solid rgba(77, 182, 172, 0.15);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.copyright {
    color: #4A5568;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: #718096;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-legal a:hover {
    color: #FF6B8A;
}

.footer-legal .separator {
    color: #CBD5E0;
    font-size: 0.85rem;
}

.footer-tagline {
    color: #718096;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
    }
    
    .footer-trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .site-footer {
        padding: 3rem 0 0 0;
    }
    
    .site-footer .wrapper {
        padding: 0 1.5rem;
    }
    
    .footer-trust-badges {
        flex-direction: column;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal .separator {
        display: none;
    }
}

/* ===========================
   UNIFIED HERO RESPONSIVE
   =========================== */

/* Tablet (iPad, etc.) */
@media (max-width: 1024px) {
    .hero-container-unified {
        gap: 3rem;
        padding: 3rem 2rem;
        grid-template-columns: 1fr;
    }
    
    .hero-title-unified {
        font-size: 2.75rem;
        text-align: left;
    }
    
    .stat-item-unified.activities-stat .stat-value {
        font-size: 2.25rem;
    }
    
    .hero-subtitle-unified {
        font-size: 1.2rem;
        text-align: left;
    }
    
    .hero-stats-unified {
        justify-content: flex-start;
    }
    
    .hero-cta-unified {
        text-align: left;
    }
    
    .cta-button-unified {
        max-width: 350px;
    }
    
    .hero-image-wrapper {
        height: 450px;
    }
    
    /* Categories Grid - 2 columns on tablet */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-image-modern {
        height: 220px;
    }
    
    /* Features Grid - 2 columns on tablet */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Search Modal adjustments */
    .search-modal-content {
        width: 85%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section-unified {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-container-unified {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 1.5rem 1rem;
    }
    
    .hero-title-unified {
        font-size: 2.2rem;
        text-align: center;
        letter-spacing: -1px;
        line-height: 1.2;
    }
    
    .stat-item-unified.activities-stat {
        order: -1; /* Show activities stat first on mobile */
    }
    
    .stat-item-unified.activities-stat .stat-value {
        font-size: 2rem;
    }
    
    .hero-subtitle-unified {
        font-size: 1.05rem;
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    .hero-stats-unified {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat-item-unified {
        padding: 1rem 1.5rem;
        text-align: center;
        flex: 1;
        min-width: 140px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-text {
        font-size: 0.75rem;
    }
    
    .cta-button-unified {
        padding: 1.125rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
        display: block;
        text-align: center;
        white-space: normal;
        line-height: 1.3;
    }
    
    .hero-cta-unified {
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .cta-note {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }
    
    .hero-image-wrapper {
        height: 350px;
        border-radius: 20px;
        order: -1; /* Show image first on mobile */
    }
    
    .hero-image-unified {
        max-width: 90%;
        max-height: 90%;
    }
    
    .floating-elements {
        display: none; /* Hide decorative elements on mobile for performance */
    }
    
    .navbar-items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-container {
        display: block;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-title-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: -1px;
        text-align: center;
    }
    
    .activities-count {
        padding: 1.25rem 1.75rem;
    }
    
    .stat-number-large {
        font-size: 2.5rem;
    }
    
    .stat-label-small {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-bubble {
        padding: 1rem 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-cta .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-subtext {
        font-size: 0.85rem;
    }
    
    .hero-image-large {
        height: 55vh;
        min-height: 450px;
        margin-top: 0;
        border-radius: 16px;
    }
    
    .hero-main-image-large {
        max-width: 95%;
        max-height: 85%;
    }
    
    .hero-image {
        height: 50vh;
        min-height: 400px;
        margin-top: 1rem;
    }
    
    /* Categories Section Mobile */
    .popular-categories {
        padding: 3rem 1rem;
    }
    
    .section-header {
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-intro {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .view-all-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .category-card-modern {
        border-radius: 16px;
    }
    
    .category-image-modern {
        height: 200px;
    }
    
    .category-content-modern {
        padding: 1.25rem;
    }
    
    .category-content-modern h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .category-content-modern p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .category-microtext-modern {
        font-size: 0.8rem;
    }
    
    /* Why Section Mobile */
    .why-section {
        padding: 3rem 1rem;
    }
    
    .why-section h2 {
        font-size: 1.85rem;
        margin-bottom: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .feature-item {
        padding: 1.75rem 1.25rem;
        text-align: center;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-item h3 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.85rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

@media (min-width: 64rem) {
    .hero-container-unified {
        max-width: 1500px;
        padding: 5rem 2rem;
        gap: 5rem;
    }
    
    .hero-title-unified {
        font-size: 4.2rem;
    }
    
    .stat-item-unified.activities-stat .stat-value {
        font-size: 3rem;
    }
    
    .stat-item-unified.activities-stat .stat-text {
        font-size: 0.95rem;
    }
    
    .hero-subtitle-unified {
        font-size: 1.4rem;
    }
    
    .hero-image-wrapper {
        height: 650px;
    }
    
    /* Old hero styles for backwards compatibility */
    .hero-content {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .stat-number-large {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-image-large {
        height: 80vh;
        min-height: 700px;
        max-height: 900px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .category-image-modern {
        height: 300px;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .activities-grid.grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .activities-grid.grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-grid.grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Responsive Grid Breakpoints */
@media (max-width: 1400px) {
    .activities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .activities-grid.grid-5,
    .activities-grid.grid-4,
    .activities-grid.grid-3,
    .activities-grid.grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   MOBILE TOUCH & UX IMPROVEMENTS
   =========================== */

/* Better touch targets for mobile - minimum 44x44px */
@media (max-width: 768px) {
    /* Ensure all clickable elements have adequate touch targets */
    a, button, .navbar-item, .category-card-modern, .feature-item {
        -webkit-tap-highlight-color: rgba(255, 59, 124, 0.2);
        touch-action: manipulation;
    }
    
    /* Improve button touch targets */
    .cta-button-unified,
    .cta-button,
    .blog-button,
    .search-button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better spacing for mobile readability */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Prevent text inflation on iOS */
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Smoother scrolling on mobile */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* Small Mobile Devices (iPhone SE, etc.) */
@media (max-width: 480px) {
    /* Hero Section */
    .hero-title-unified {
        font-size: 1.85rem;
        letter-spacing: -0.5px;
    }
    
    .stat-item-unified.activities-stat .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-item-unified.activities-stat .stat-text {
        font-size: 0.7rem;
    }
    
    .hero-subtitle-unified {
        font-size: 1rem;
        padding: 0 0.25rem;
    }
    
    .hero-stats-unified {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stat-item-unified {
        width: 100%;
        min-width: unset;
    }
    
    .cta-button-unified {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-image-wrapper {
        height: 300px;
    }
    
    /* Navbar */
    .navbar {
        height: 70px;
    }
    
    .navbar-container {
        padding: 0 1rem;
    }
    
    .navbar-brand .brand-link {
        font-size: 1.5rem;
    }
    
    .navbar-brand .brand-separator,
    .navbar-brand .brand-explore {
        display: none;
    }
    
    .navbar-menu {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
    
    .page-content {
        padding-top: 70px;
    }
    
    /* Categories */
    .popular-categories {
        padding: 2.5rem 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-intro {
        font-size: 0.9rem;
    }
    
    .categories-grid {
        gap: 1rem;
    }
    
    .category-image-modern {
        height: 180px;
    }
    
    .category-content-modern {
        padding: 1rem;
    }
    
    .category-content-modern h3 {
        font-size: 1.15rem;
    }
    
    .category-content-modern p {
        font-size: 0.9rem;
    }
    
    /* Why Section */
    .why-section {
        padding: 2.5rem 0.75rem;
    }
    
    .why-section h2 {
        font-size: 1.65rem;
    }
    
    .features-grid {
        gap: 1rem;
        padding: 0;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        font-size: 2.25rem;
    }
    
    .feature-item h3 {
        font-size: 1.05rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 2.5rem 0.75rem;
    }
    
    .cta-content h2 {
        font-size: 1.65rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Activities Grid */
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .activities-grid.grid-5,
    .activities-grid.grid-4,
    .activities-grid.grid-3,
    .activities-grid.grid-2 {
        grid-template-columns: 1fr;
    }
    
    .activity-details-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-actions {
        flex-direction: column;
    }
    
    .view-details-btn,
    .website-btn {
        flex: none;
    }
}

/* Activities Page */
.activities-page {
    min-height: 100vh;
    background: #FDF5E6;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
}

.activities-hero {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.activities-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Baloo 2', cursive;
}

.activities-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.quick-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #F59C8C;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Activity Type Sub-Navigation */
.activity-type-nav {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
    border-top: none;
    padding: 0.75rem 0;
    margin: 0;
    position: fixed;
    top: 79px;
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    box-shadow: none;
    height: auto;
}

.activity-type-nav.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.activity-type-nav-container {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 2rem;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 transparent;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.activity-type-nav-container::-webkit-scrollbar {
    height: 4px;
}

.activity-type-nav-container::-webkit-scrollbar-track {
    background: transparent;
}

.activity-type-nav-container::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 2px;
}

.activity-type-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4A5568;
    min-width: fit-content;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    height: 36px;
}

.activity-type-btn:hover {
    background: #f7fafc;
    border-color: #4DB6AC;
    color: #2D3748;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(77, 182, 172, 0.15);
}

.activity-type-btn.active {
    background: #4DB6AC;
    border-color: #4DB6AC;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(77, 182, 172, 0.3);
}

.activity-type-btn.active:hover {
    background: #3a9b8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(77, 182, 172, 0.4);
}

.activity-type-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.activity-type-text {
    font-size: 0.9rem;
    font-weight: inherit;
}

/* Settings Toggle Button */
.settings-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 1px solid #5a67d8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    min-width: fit-content;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.settings-toggle-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.settings-icon {
    font-size: 1rem;
    line-height: 1;
}

.settings-text {
    font-size: 0.9rem;
    font-weight: inherit;
}

/* Settings Panel */
.settings-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
}

.settings-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.settings-content {
    padding: 1.5rem;
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.settings-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D3748;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.settings-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #718096;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.settings-close:hover {
    background: #f7fafc;
    color: #2D3748;
}

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

.settings-filters .filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.settings-filters .filter-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A5568;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.settings-filters .filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    color: #2D3748;
    transition: all 0.2s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.settings-filters .filter-select:focus {
    outline: none;
    border-color: #4DB6AC;
    box-shadow: 0 0 0 3px rgba(77, 182, 172, 0.1);
}

.settings-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.clear-filters-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.clear-filters-btn:hover {
    background: linear-gradient(135deg, #ee5a52, #e53e3e);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.clear-icon {
    font-size: 1rem;
}

/* Old filters section removed - now integrated into settings panel */

/* Old filter styles removed - now in settings panel */

/* Removed old filters-actions */

.layout-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.layout-controls label {
    font-weight: 600;
    color: #2D3748;
    font-family: 'Baloo 2', cursive;
}

.layout-buttons {
    display: flex;
    gap: 0.5rem;
}

.layout-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #E2E8F0;
    background: white;
    
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Baloo 2', cursive;
}

.layout-btn:hover {
    border-color: #F59C8C;
    color: #F59C8C;
}

.layout-btn.active {
    background: #F59C8C;
    border-color: #F59C8C;
    color: white;
}

.clear-filters-btn {
    background: #F59C8C;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Baloo 2', cursive;
    white-space: nowrap;
    height: fit-content;
}

.clear-filters-btn:hover {
    background: #FDDDC9;
    color: #F59C8C;
    transform: translateY(-1px);
}

/* Activity Category Badge */
.activity-category-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 0.6rem;
    
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(5px);
}

.category-emoji {
    font-size: 1.2rem;
}

.category-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2D3748;
    font-family: 'Baloo 2', cursive;
}

/* Activity Image */
.activity-image {
    position: relative;
    width: 100%;
    height: 20vh; /* Modern viewport height unit - responsive to screen size */
    min-height: 300px; /* Fallback minimum height */
    max-height: 400px; /* Prevent images from being too tall on large screens */
    margin: 0 0 1rem 0;
    overflow: hidden;
    background-size: cover !important; /* Ensure cover is always applied */
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover; /* Modern CSS for proper image scaling */
    aspect-ratio: 16/9; /* Modern aspect ratio for consistent proportions */
    container-type: inline-size; /* Modern CSS container queries support */
}

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

/* Modern responsive image behavior */
@container (max-width: 400px) {
    .activity-image {
        height: 15vh;
        min-height: 250px;
    }
}

@container (min-width: 1200px) {
    .activity-image {
        height: 22vh;
        min-height: 350px;
    }
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-overlay {
    opacity: 1;
}

.view-details {
    color: white;
    font-weight: 600;
    font-family: 'Baloo 2', cursive;
}

/* ===========================
   ENHANCED ACTIVITY DETAIL PAGE
   =========================== */

/* Activity Hero Section */
.activity-hero {
    position: relative;
    margin: 0;
    padding: 0;
}

.activity-hero-image {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(77, 182, 172, 0.9) 0%, rgba(102, 126, 234, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.activity-meta-badges {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.age-badge, .type-badge, .location-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #2D3748;
    padding: 0.5rem 1rem;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.activity-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.activity-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.share-label {
    font-weight: 600;
    font-size: 1rem;
}

.share-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #2D3748;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Main Content Layout */
.activity-main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.activity-sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.activity-main-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Activity Sections */
.activity-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4DB6AC, #667eea);
    border-radius: 2px;
}

.section-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4A5568;
}

/* Key Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.detail-card {
    background: linear-gradient(135deg, rgba(77, 182, 172, 0.05), rgba(102, 126, 234, 0.05));
    border: 2px solid rgba(77, 182, 172, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(77, 182, 172, 0.2);
    border-color: rgba(77, 182, 172, 0.3);
}

.detail-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.detail-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.detail-info p {
    font-size: 0.95rem;
    color: #4A5568;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-top: 0.5rem;
}

/* Checklist Styling */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.checklist li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #2D3748;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4DB6AC;
    font-weight: 700;
    font-size: 1.25rem;
}

.tip-note {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 183, 77, 0.1), rgba(255, 107, 138, 0.1));
    border-left: 4px solid #FFB74D;
    border-radius: 8px;
    font-size: 0.95rem;
}

/* FAQs */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(240, 248, 255, 0.95));
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar */
.activity-sidebar-column {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.sidebar-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.75rem;
}

/* Quick Actions */
.action-btn {
    display: block;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-btn.primary {
    background: linear-gradient(135deg, #4DB6AC, #667eea);
    color: white;
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 182, 172, 0.4);
}

.action-btn.secondary {
    background: white;
    color: #2D3748;
    border: 2px solid #e2e8f0;
}

.action-btn.secondary:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
}

/* At a Glance */
.glance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.glance-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 8px;
}

.glance-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.glance-text {
    font-size: 0.95rem;
    color: #2D3748;
    font-weight: 500;
}

/* Schedule Display */
.schedule-display {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(77, 182, 172, 0.1), rgba(102, 126, 234, 0.1));
    border-radius: 12px;
}

.schedule-days {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.schedule-times {
    font-size: 1rem;
    color: #4A5568;
}

/* Tips List */
.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tips-list li {
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.5;
}

.tips-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4DB6AC;
    font-weight: 700;
}

/* Claim Section Enhanced */
.claim-section-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 5rem 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.claim-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.claim-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.claim-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.claim-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.claim-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.claim-button-enhanced {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: #667eea;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.claim-button-enhanced:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Similar Activities */
.similar-activities {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(232, 245, 232, 0.3), rgba(240, 248, 255, 0.3));
}

.similar-activities .container {
    max-width: 1400px;
    margin: 0 auto;
}

.similar-activities .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #4A5568;
    margin-bottom: 3rem;
}

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

.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.view-all-activities-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #4DB6AC, #667eea);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(77, 182, 172, 0.3);
}

.view-all-activities-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(77, 182, 172, 0.4);
}

/* Bottom Navigation */
.activity-nav-bottom {
    text-align: center;
    padding: 2rem;
}

.back-link-enhanced {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: white;
    color: #2D3748;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-link-enhanced:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .activity-sidebar-layout {
        grid-template-columns: 1fr 340px;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .activity-sidebar-layout {
        grid-template-columns: 1fr;
    }
    
    .activity-sidebar-column {
        position: static;
        top: auto;
    }
    
    .activity-hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .activity-hero-image {
        height: 40vh;
        min-height: 350px;
    }
    
    .activity-hero-title {
        font-size: 2rem;
    }
    
    .activity-hero-description {
        font-size: 1.1rem;
    }
    
    .activity-main-content {
        padding: 2rem 1rem;
    }
    
    .activity-section {
        padding: 1.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .claim-section-enhanced {
        padding: 3rem 1.5rem;
    }
    
    .claim-content h2 {
        font-size: 2rem;
    }
    
    .similar-activities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .activity-hero-title {
        font-size: 1.75rem;
    }
    
    .activity-meta-badges {
        gap: 0.5rem;
    }
    
    .age-badge, .type-badge, .location-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .social-share {
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Modern Activity Card Styles (for similar activities) */
.activity-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.activity-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-link-modern {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.card-image-modern {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.category-badge-modern {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.badge-icon-modern {
    font-size: 1.1rem;
}

.badge-text-modern {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2D3748;
}

.free-badge-modern {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
    z-index: 2;
}

.card-content-modern {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.activity-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meta-info-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.meta-item-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-icon-modern {
    font-size: 1rem;
    flex-shrink: 0;
    opacity: 0.7;
}

.meta-text-modern {
    font-size: 0.9rem;
    color: #4A5568;
    font-weight: 500;
}

.card-footer-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
}

.cost-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: #667eea;
}

.action-arrow-modern {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4DB6AC, #667eea);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.activity-card-modern:hover .action-arrow-modern {
    transform: translateX(4px);
}

/* Activity Content */
.activity-content {
    position: relative;
    padding: 1.5rem;
}

/* Activity Image/Icon */
.activity-image {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, #FF6B8A, #4DB6AC);
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.activity-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFD700;
    color: #2D3748;
    padding: 4px 8px;
    
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Activity Content */
.activity-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.activity-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

/* Activity Venue */
.activity-venue {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(245, 156, 140, 0.1);
    
    border-left: 3px solid #F59C8C;
}

.venue-icon {
    font-size: 1rem;
}

.venue-text {
    font-weight: 600;
    color: #2D3748;
    font-size: 0.9rem;
}

/* Activity Details Grid */
.activity-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(248, 250, 252, 0.8);
    
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-icon {
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.detail-label {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-text {
    font-size: 0.85rem;
    color: #2D3748;
    font-weight: 500;
    word-break: break-word;
}

/* Activity Extra Info */
.activity-extra-info {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.address-info {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(79, 172, 254, 0.1);
    
    border-left: 3px solid #4FACFE;
}

.address-icon {
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.address-text {
    font-size: 0.85rem;
    color: #2D3748;
    line-height: 1.4;
}

.contact-info {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(79, 172, 254, 0.1);
    color: #4FACFE;
    text-decoration: none;
    
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.contact-link:hover {
    background: #4FACFE;
    color: white;
    transform: translateY(-1px);
}

.facility-info {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.facility-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(157, 200, 188, 0.2);
    color: #7CAEB3;
    
    font-size: 0.8rem;
    font-weight: 500;
}

/* Activity Actions */
.activity-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.view-details-btn {
    flex: 1;
    background: #F59C8C;
    color: white;
    padding: 0.75rem 1rem;
    
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
}

.view-details-btn:hover {
    background: #9dc8bc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 156, 140, 0.3);
}

.website-btn {
    flex: 1;
    background: transparent;
    color: #4FACFE;
    padding: 0.75rem 1rem;
    border: 2px solid #4FACFE;
    
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
}

.website-btn:hover {
    background: #4FACFE;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
}

.age-tag {
    background: rgba(164, 211, 211, 0.2);
    color: #7CAEB3;
    padding: 0.25rem 0.75rem;
    
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Baloo 2', cursive;
}

.activity-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 0.75rem;
    font-family: 'Baloo 2', cursive;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.activity-excerpt {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.activity-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #4A5568;
}

.detail-icon {
    font-size: 1rem;
    opacity: 0.7;
}

.detail-text {
    font-family: 'Baloo 2', cursive;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #718096;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2D3748;
    font-family: 'Baloo 2', cursive;
}

.no-results p {
    margin-bottom: 1.5rem;
}

.no-results a {
    color: #F59C8C;
    text-decoration: none;
    font-weight: 600;
}

.no-results a:hover {
    text-decoration: underline;
}

/* ===========================
   BLOG PAGE STYLES
   =========================== */

.blog-page {
    min-height: 100vh;
    position: relative;
}

/* Blog Page Header */
.blog-page .page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-page .page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.blog-page .page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 400;
}

/* Blog Content Container */
.blog-page .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem 2rem;
}

.blog-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

/* Blog Posts Section */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Blog Post Card */
.blog-post-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e0;
}

/* Post Meta */
.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-meta time {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta time::before {
    content: '📅';
    font-size: 1rem;
}

.post-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.35rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Post Title */
.blog-post-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.blog-post-card h2 a {
    color: #2D3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card h2 a:hover {
    color: #667eea;
}

/* Post Excerpt */
.post-excerpt {
    font-size: 1.05rem;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Post Actions */
.post-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.read-more-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-btn::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.read-more-btn:hover::after {
    transform: translateX(4px);
}

/* No Posts Message */
.no-posts {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-posts h3 {
    font-size: 2rem;
    color: #2D3748;
    margin-bottom: 1rem;
}

.no-posts > p {
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 2rem;
}

.blog-preview {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(245, 147, 251, 0.05));
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: left;
}

.blog-preview h4 {
    font-size: 1.5rem;
    color: #2D3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.blog-preview ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.blog-preview li {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.6;
    padding-left: 0;
}

.blog-preview strong {
    color: #2D3748;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.sidebar-section h3 {
    font-size: 1.25rem;
    color: #2D3748;
    margin-bottom: 1.25rem;
    font-weight: 700;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.75rem;
}

.sidebar-section > p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Blog Categories */
.blog-categories {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-category-link {
    display: block;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(245, 147, 251, 0.05));
    border-radius: 8px;
    color: #2D3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.blog-category-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateX(4px);
    border-color: #667eea;
}

/* Newsletter Signup */
.newsletter-signup {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.email-input {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Baloo 2', cursive;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Baloo 2', cursive;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.newsletter-note {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Quick Nav */
.quick-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-nav a {
    display: block;
    padding: 0.75rem 1.25rem;
    background: #f7fafc;
    border-radius: 8px;
    color: #2D3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.quick-nav a:hover {
    background: #667eea;
    color: white;
    transform: translateX(4px);
}

/* Social Follow */
.social-follow {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: block;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(245, 147, 251, 0.1));
    border-radius: 8px;
    color: #2D3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.social-btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Responsive Blog Layout */
@media (max-width: 1024px) {
    .blog-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
        top: auto;
    }
    
    .blog-page .page-header h1 {
        font-size: 2.5rem;
    }
    
    .blog-post-card h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .blog-page .page-header {
        padding: 3rem 1.5rem;
    }
    
    .blog-page .page-header h1 {
        font-size: 2rem;
    }
    
    .blog-page .page-header p {
        font-size: 1rem;
    }
    
    .blog-page .container {
        padding: 0 1rem 3rem 1rem;
    }
    
    .blog-post-card {
        padding: 1.5rem;
    }
    
    .blog-post-card h2 {
        font-size: 1.5rem;
    }
    
    .sidebar-section {
        padding: 1.5rem;
    }
}

/* ===========================
   INDIVIDUAL BLOG POST STYLES
   =========================== */

/* Blog Post Page Wrapper */
article.blog-post {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(232, 245, 232, 0.3) 0%,
        rgba(255, 248, 225, 0.3) 25%,
        rgba(240, 248, 255, 0.3) 50%,
        rgba(245, 240, 255, 0.3) 75%,
        rgba(232, 245, 232, 0.3) 100%
    );
    padding-bottom: 4rem;
}

/* Post Header */
.post-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #F093FB 100%);
    padding: 6rem 2rem 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: floatParticles 10s ease-in-out infinite;
    pointer-events: none;
}

.post-header .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.post-header .post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.post-header .post-meta time {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.post-header .post-meta time::before {
    content: '📅';
    font-size: 1.1rem;
}

.post-header .post-categories {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.post-header .category-tag {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.post-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.post-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Post Content */
.post-content {
    padding: 4rem 2rem;
}

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

.post-body {
    background: white;
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 1px solid #e2e8f0;
}

/* Post Body Typography */
.post-body h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2D3748;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #667eea;
}

.post-body h2:first-child {
    margin-top: 0;
}

.post-body h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2D3748;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-body h4 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #4A5568;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.post-body p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.post-body p:last-child {
    margin-bottom: 0;
}

.post-body strong {
    color: #2D3748;
    font-weight: 700;
}

.post-body em {
    font-style: italic;
    color: #718096;
}

.post-body a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.post-body a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

.post-body ul,
.post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-body ul {
    list-style: none;
}

.post-body ul li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 0.75rem;
    position: relative;
}

.post-body ul li:before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: -1.5rem;
}

.post-body ol li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 0.75rem;
}

.post-body blockquote {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(245, 147, 251, 0.05));
    border-left: 4px solid #667eea;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-style: italic;
}

.post-body blockquote p {
    color: #2D3748;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.post-body code {
    background: #f7fafc;
    color: #e91e63;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'Monaco', 'Courier New', monospace;
    border: 1px solid #e2e8f0;
}

.post-body pre {
    background: #2D3748;
    color: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
    line-height: 1.6;
}

.post-body pre code {
    background: transparent;
    color: inherit;
    padding: 0;
    border: none;
    font-size: 0.95rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.post-body hr {
    border: none;
    border-top: 2px solid #e2e8f0;
    margin: 3rem 0;
}

/* Post Tags */
.post-tags {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.post-tags h4 {
    font-size: 1.1rem;
    color: #2D3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(245, 147, 251, 0.1));
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Post Navigation */
.post-navigation {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.post-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(245, 147, 251, 0.05));
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.nav-link:hover .nav-label,
.nav-link:hover .nav-title {
    color: white;
}

.nav-label {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title {
    font-size: 1.1rem;
    color: #2D3748;
    font-weight: 700;
    line-height: 1.4;
}

.prev-post {
    text-align: left;
}

.next-post {
    text-align: right;
}

/* Back to Blog */
.back-to-blog {
    text-align: center;
    margin-top: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.back-link:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Share Section */
.post-share {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.post-share h4 {
    font-size: 1.2rem;
    color: #2D3748;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

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

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.email {
    background: #718096;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Blog Post */
@media (max-width: 768px) {
    .post-header {
        padding: 4rem 1.5rem 3rem 1.5rem;
    }
    
    .post-title {
        font-size: 2.25rem;
    }
    
    .post-subtitle {
        font-size: 1.15rem;
    }
    
    .post-content {
        padding: 3rem 1rem;
    }
    
    .post-body {
        padding: 2rem 1.5rem;
    }
    
    .post-body h2 {
        font-size: 1.75rem;
    }
    
    .post-body h3 {
        font-size: 1.4rem;
    }
    
    .post-body p,
    .post-body ul li,
    .post-body ol li {
        font-size: 1rem;
    }
    
    .post-nav-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .next-post {
        text-align: left;
    }
    
    .post-tags,
    .post-navigation,
    .post-share {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.75rem;
    }
    
    .post-body {
        padding: 1.5rem 1rem;
    }
    
    .back-link {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */

.contact-page {
    min-height: 100vh;
    padding: 0 0 4rem 0;
    background: linear-gradient(135deg, 
        rgba(232, 245, 232, 0.3) 0%,
        rgba(255, 248, 225, 0.3) 25%,
        rgba(240, 248, 255, 0.3) 50%,
        rgba(245, 240, 255, 0.3) 75%,
        rgba(232, 245, 232, 0.3) 100%
    );
}

/* Contact Page Header */
.contact-page .page-header {
    background: linear-gradient(135deg, #4DB6AC 0%, #667eea 50%, #4FACFE 100%);
    padding: 5rem 2rem 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-page .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: floatParticles 10s ease-in-out infinite;
    pointer-events: none;
}

.contact-page .page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.contact-page .page-header p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto;
    max-width: 800px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Contact Content Wrapper */
.contact-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4DB6AC, #667eea);
    border-radius: 2px;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(77, 182, 172, 0.2);
    border-color: rgba(77, 182, 172, 0.3);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 0.75rem;
}

.info-card p {
    font-size: 1rem;
    color: #4A5568;
    margin-bottom: 0.5rem;
}

.info-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4DB6AC;
    margin-top: 0.5rem;
}

.info-link {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Social Card */
.social-card {
    background: linear-gradient(135deg, rgba(77, 182, 172, 0.05), rgba(102, 126, 234, 0.05));
    border: 2px solid rgba(77, 182, 172, 0.2);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #2D3748;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-btn:hover {
    background: linear-gradient(135deg, #4DB6AC, #667eea);
    color: white;
    border-color: transparent;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(77, 182, 172, 0.3);
}

.social-icon {
    font-size: 1.5rem;
}

.social-text {
    font-size: 1rem;
}

/* Quick Help Section */
.quick-help-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.quick-help-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2D3748;
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.quick-help-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.quick-help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4DB6AC, #667eea);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-help-card:hover::before {
    transform: scaleX(1);
}

.quick-help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(77, 182, 172, 0.2);
    border-color: rgba(77, 182, 172, 0.3);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.quick-help-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 0.75rem;
}

.quick-help-card p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page .page-header {
        padding: 4rem 1.5rem 3rem 1.5rem;
    }
    
    .contact-page .page-header h1 {
        font-size: 2.25rem;
    }
    
    .contact-page .page-header p {
        font-size: 1.1rem;
    }
    
    .contact-content-wrapper {
        padding: 2rem 1rem;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
    }
    
    .quick-help-section {
        padding: 2rem 1.5rem;
    }
    
    .quick-help-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-page .page-header h1 {
        font-size: 1.85rem;
    }
    
    .contact-page .page-header p {
        font-size: 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
}

/* ===========================
   CLAIM PAGE STYLES
   =========================== */

.claim-page {
    min-height: 100vh;
    padding: 0 0 4rem 0;
    background: linear-gradient(135deg, 
        rgba(232, 245, 232, 0.3) 0%,
        rgba(255, 248, 225, 0.3) 25%,
        rgba(240, 248, 255, 0.3) 50%,
        rgba(245, 240, 255, 0.3) 75%,
        rgba(232, 245, 232, 0.3) 100%
    );
}

/* Claim Page Header */
.claim-page .page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 5rem 2rem 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.claim-page .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: floatParticles 10s ease-in-out infinite;
    pointer-events: none;
}

.claim-page .page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.claim-page .page-header p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto;
    max-width: 700px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Claim Benefits Section */
.claim-benefits {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.claim-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2D3748;
    letter-spacing: -0.02em;
}

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

.benefit {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit:hover::before {
    transform: scaleX(1);
}

.benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.benefit h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.benefit p {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
}

/* Claim Form Container */
.claim-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 2rem 2rem;
}

.claim-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
}

.claim-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.claim-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 0.75rem;
    font-family: 'Baloo 2', cursive;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Baloo 2', cursive;
    color: #2D3748;
    background: #fafbfc;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234A5568' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

/* Checkbox Groups */
.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    padding-left: 0;
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    cursor: pointer;
    margin: 2px 0 0 0;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
}

.checkbox-label a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Baloo 2', cursive;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.45);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Claim Process Section */
.claim-process {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(245, 147, 251, 0.05));
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.claim-process h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.process-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 5rem;
    margin-bottom: 1.25rem;
    background: white;
    border-radius: 12px;
    font-size: 1.05rem;
    color: #2D3748;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-steps li:last-child {
    margin-bottom: 0;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.process-steps li:hover {
    transform: translateX(8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
}

/* Responsive Claim Page */
@media (max-width: 768px) {
    .claim-page .page-header {
        padding: 4rem 1.5rem 3rem 1.5rem;
    }
    
    .claim-page .page-header h1 {
        font-size: 2.25rem;
    }
    
    .claim-page .page-header p {
        font-size: 1.1rem;
    }
    
    .claim-benefits {
        padding: 3rem 1.5rem;
    }
    
    .claim-benefits h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .claim-form-container {
        padding: 0 1rem 2rem 1rem;
    }
    
    .claim-form {
        padding: 2rem 1.5rem;
    }
    
    .claim-form h2 {
        font-size: 1.75rem;
    }
    
    .claim-process {
        padding: 2rem 1.5rem;
    }
    
    .process-steps li {
        padding: 1.25rem 1.25rem 1.25rem 4.5rem;
        font-size: 0.95rem;
    }
    
    .process-steps li::before {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        left: 1.25rem;
    }
}

@media (max-width: 480px) {
    .claim-page .page-header h1 {
        font-size: 1.85rem;
    }
    
    .claim-page .page-header p {
        font-size: 1rem;
    }
    
    .benefit {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        font-size: 3rem;
    }
}

/* ===========================
   BLOG-INSPIRED ACTIVITIES PAGE
   Matching Blog Page Design
   =========================== */

/* Activities Page - Blog Style */
.activities-page {
    min-height: 100vh;
    position: relative;
}

/* Activities Page Header (matching blog header) */
.activities-page .page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 3rem 2rem 3rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.activities-page .page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.activities-page .page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* Container (matching blog) */
.activities-page .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem 2rem;
}

/* Two-column layout like blog */
.activities-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

/* Main Content Area */
.activities-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Search Bar */
.activities-search-bar {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.search-box-activities {
    position: relative;
}

.search-icon-activities {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    opacity: 0.6;
}

.search-input-activities {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Baloo 2', cursive;
    transition: all 0.3s ease;
}

.search-input-activities:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Quick Filters (like blog categories) */
.quick-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.65rem 1.25rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A5568;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Baloo 2', cursive;
}

.filter-pill:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.filter-pill.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #667eea;
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Dynamic Filter Header */
.dynamic-filter-header {
    text-align: center;
    padding: 3rem 2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.filter-title-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    transition: opacity 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.filter-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

/* Results Info */
.results-info {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 0;
}

.results-count-text {
    font-size: 1rem;
    font-weight: 600;
    color: #4A5568;
    margin: 0;
    font-family: 'Baloo 2', cursive;
}

.results-count-text span {
    color: #667eea;
    font-weight: 700;
}

/* Grid Layout Controls */
.grid-layout-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.layout-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A5568;
    font-family: 'Baloo 2', cursive;
}

.layout-buttons-group {
    display: inline-flex;
    align-items: center;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.layout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #718096;
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    min-width: fit-content;
}

.layout-btn:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
}

.layout-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.layout-btn svg {
    pointer-events: none;
    flex-shrink: 0;
}

.btn-label {
    pointer-events: none;
}

/* Activities List */
.activities-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    transition: all 0.3s ease;
}

/* Grid Layout Options */
.activities-list.grid-columns-1 {
    grid-template-columns: 1fr;
}

.activities-list.grid-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.activities-list.grid-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Adjust card styling for grid layouts */
.activities-list.grid-columns-2 .activity-card-blog,
.activities-list.grid-columns-3 .activity-card-blog {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activities-list.grid-columns-2 .activity-excerpt-blog,
.activities-list.grid-columns-3 .activity-excerpt-blog {
    flex-grow: 1;
}

/* Adjust for 3 column layout - make it slightly more compact */
.activities-list.grid-columns-3 .activity-card-blog {
    padding: 2rem;
}

.activities-list.grid-columns-3 .activity-card-title {
    font-size: 1.65rem;
}

.activities-list.grid-columns-3 .activity-excerpt-blog {
    font-size: 0.98rem;
}

/* Activity Card - Blog Style */
.activity-card-blog {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.activity-card-blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activity-card-blog:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #cbd5e0;
}

.activity-card-blog:hover::before {
    opacity: 1;
}

/* Card Header with Location and Price */
.activity-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f7fafc;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Location Badge (Prominent) */
.location-badge-prominent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
    transition: all 0.3s ease;
}

.location-badge-prominent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 153, 225, 0.4);
}

.location-icon {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2.5;
}

.location-text {
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Price Badge (Prominent) */
.price-badge-prominent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
    transition: all 0.3s ease;
}

.price-badge-prominent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(72, 187, 120, 0.4);
}

.price-icon {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 2.5;
}

.price-text {
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Venue Section (Prominent) */
.venue-section-prominent {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-left: 4px solid #667eea;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.venue-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.venue-icon {
    color: #667eea;
    flex-shrink: 0;
}

.venue-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
    margin-left: 1.5rem;
}

.address-icon {
    color: #718096;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Activity Meta (matching post meta) */
.activity-meta-blog {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Day Summary Badge (Top Right) */
.day-summary-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.day-summary-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
}

.category-badges-blog {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-tag-blog {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Baloo 2', cursive;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.category-tag-blog:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Category-specific colors */
.category-tag-blog.music {
    background: linear-gradient(135deg, #ed64a6, #f56565);
}

.category-tag-blog.swimming {
    background: linear-gradient(135deg, #4299e1, #3182ce);
}

.category-tag-blog.storytime {
    background: linear-gradient(135deg, #9f7aea, #805ad5);
}

.category-tag-blog.sensory {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
}

.category-tag-blog.outdoors {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.category-tag-blog.playgroup {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.age-tag-blog {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Baloo 2', cursive;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
    transition: all 0.2s ease;
}

.age-tag-blog:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

/* Activity Title (matching blog post title) */
.activity-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.activity-card-title a {
    color: #2D3748;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.activity-card-title a:hover {
    color: #667eea;
    transform: translateX(4px);
}

/* Activity Excerpt (matching post excerpt) */
.activity-excerpt-blog {
    font-size: 1.05rem;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Activity Details */
.activity-details-blog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
}

.detail-item-blog {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.detail-item-blog:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: translateX(2px);
}

.detail-icon-blog {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.detail-text-blog {
    font-size: 0.95rem;
    color: #2d3748;
    line-height: 1.4;
}

.detail-text-blog strong {
    color: #1a202c;
    font-weight: 600;
}

.detail-item-blog.days-detail {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.days-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-left: 1.75rem;
}

.day-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
    transition: all 0.2s ease;
}

.day-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
}

.detail-icon-blog {
    font-size: 1.1rem;
    opacity: 0.8;
}

.detail-text-blog {
    font-size: 0.95rem;
    color: #2D3748;
    font-weight: 500;
    font-family: 'Baloo 2', cursive;
}

.cost-item .detail-text-blog {
    color: #667eea;
    font-weight: 700;
}

/* Activity Actions (matching blog post actions) */
.activity-actions-blog {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.view-activity-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Baloo 2', cursive;
}

.view-activity-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.website-link-blog {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Baloo 2', cursive;
}

.website-link-blog:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Sidebar (matching blog sidebar) */
.activities-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.sidebar-section h3 {
    font-size: 1.25rem;
    color: #2D3748;
    margin-bottom: 1.25rem;
    font-weight: 700;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.75rem;
}

/* Sidebar Filters */
.sidebar-filters {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.filter-group-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group-sidebar label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A5568;
    font-family: 'Baloo 2', cursive;
}

.filter-select-sidebar {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    color: #2D3748;
    transition: all 0.2s ease;
    font-family: 'Baloo 2', cursive;
}

.filter-select-sidebar:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.clear-filters-sidebar-btn {
    margin-top: 0.5rem;
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #4A5568;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Baloo 2', cursive;
}

.clear-filters-sidebar-btn:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

/* Activity Categories (matching blog categories) */
.activity-categories {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-category-link {
    display: block;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(245, 147, 251, 0.05));
    border-radius: 8px;
    color: #2D3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: 'Baloo 2', cursive;
}

.activity-category-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateX(4px);
    border-color: #667eea;
}

/* Quick Nav (matching blog quick nav) */
.quick-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-nav a {
    display: block;
    padding: 0.75rem 1.25rem;
    background: #f7fafc;
    border-radius: 8px;
    color: #2D3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    font-family: 'Baloo 2', cursive;
}

.quick-nav a:hover {
    background: #667eea;
    color: white;
    transform: translateX(4px);
}

/* Newsletter (matching blog newsletter) */
.newsletter-signup {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.email-input {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Baloo 2', cursive;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Baloo 2', cursive;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.newsletter-note {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 0.5rem;
    font-style: italic;
}

.sidebar-section > p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* No Results (matching blog no posts) */
.no-results-activities {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-results-icon-activities {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-results-activities h3 {
    font-size: 2rem;
    color: #2D3748;
    margin-bottom: 1rem;
}

.no-results-activities p {
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 2rem;
}

/* Responsive Design (matching blog) */
@media (max-width: 1024px) {
    .activities-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .activities-sidebar {
        position: static;
        top: auto;
    }
    
    .activities-page .page-header h1 {
        font-size: 2.5rem;
    }
    
    .activity-card-title {
        font-size: 1.75rem;
    }
    
    /* Adjust grid layouts for tablets */
    .activities-list.grid-columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .layout-btn {
        padding: 0.6rem 0.9rem;
        font-size: 0.8rem;
        gap: 0.35rem;
    }
    
    .layout-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 768px) {
    .activities-page .page-header {
        padding: 3rem 1.5rem;
    }
    
    .activities-page .page-header h1 {
        font-size: 2rem;
    }
    
    .activities-page .page-header p {
        font-size: 1rem;
    }
    
    .activities-page .container {
        padding: 0 1rem 3rem 1rem;
    }
    
    .activity-card-blog {
        padding: 1.5rem;
    }
    
    .activity-card-title {
        font-size: 1.5rem;
    }
    
    .sidebar-section {
        padding: 1.5rem;
    }
    
    .quick-filters {
        gap: 0.5rem;
    }
    
    .filter-pill {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .activity-details-blog {
        grid-template-columns: 1fr;
    }
    
    /* Dynamic title responsive */
    .filter-title-main {
        font-size: 1.75rem;
    }
    
    .filter-subtitle {
        font-size: 1rem;
    }
    
    .dynamic-filter-header {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    /* Stack grid layout controls on mobile */
    .results-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .grid-layout-controls {
        width: 100%;
    }
    
    .layout-buttons-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .layout-btn {
        flex: 1;
        padding: 0.65rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .btn-label {
        display: none;
    }
    
    /* Force all grids to 1 column on mobile */
    .activities-list.grid-columns-1,
    .activities-list.grid-columns-2,
    .activities-list.grid-columns-3 {
        grid-template-columns: 1fr;
    }
}
