  :root {
            --primary-orange: #E8783D;
            --primary-orange-dark: #D4632A;
            --secondary-cream: #FFF8F0;
            --accent-teal: #4AAAA5;
            --accent-pink: #FFB5BA;
            --text-dark: #2D2A26;
            --text-muted: #6B6560;
            --success-green: #5CB85C;
            --warning-gold: #F5A623;
            --danger-red: #E74C3C;
            --gradient-warm: linear-gradient(135deg, #E8783D 0%, #F5A623 100%);
            --gradient-soft: linear-gradient(135deg, #FFF8F0 0%, #FFE4D4 100%);
            --shadow-soft: 0 4px 20px rgba(232, 120, 61, 0.15);
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
            --border-radius: 20px;
        }

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

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--text-dark);
            background-color: var(--secondary-cream);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
        }

        /* Paw Print Decorations */
        .paw-decoration {
            position: absolute;
            opacity: 0.1;
            font-size: 3rem;
            color: var(--primary-orange);
            z-index: 0;
        }

        /* Navbar */
        .navbar-custom {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            padding: 0.8rem 0;
            transition: all 0.3s ease;
        }

        .navbar-custom.scrolled {
            padding: 0.5rem 0;
            background: rgba(255, 255, 255, 0.98);
        }

        .navbar-brand {
            font-family: 'Fredoka', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-orange) !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-brand i {
            font-size: 2rem;
        }

        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.3rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

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

        .btn-member {
            background: var(--gradient-warm);
            color: white !important;
            border: none;
            padding: 0.6rem 1.5rem !important;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-member:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-soft);
        }

        /* Hero Section */
        .hero-section {
            background: var(--gradient-soft);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
        }

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

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-title span {
            color: var(--primary-orange);
            position: relative;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background: var(--accent-pink);
            opacity: 0.5;
            z-index: -1;
            border-radius: 5px;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
        }

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

        .stat-number {
            font-family: 'Fredoka', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-orange);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Pet Slider */
        .pet-slider-container {
            position: relative;
            padding: 2rem 0;
        }

        .carousel-inner {
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .pet-slide {
            position: relative;
            height: 500px;
            background-size: cover;
            background-position: center;
            border-radius: var(--border-radius);
        }

        .pet-slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 3rem;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }

        .pet-slide-name {
            font-family: 'Fredoka', sans-serif;
            font-size: 2rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .pet-slide-info {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
            box-shadow: var(--shadow-card);
        }

        .carousel-control-prev {
            left: -30px;
        }

        .carousel-control-next {
            right: -30px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: invert(48%) sepia(82%) saturate(629%) hue-rotate(342deg) brightness(95%) contrast(88%);
        }

        .carousel-indicators {
            bottom: -40px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary-orange);
            opacity: 0.4;
        }

        .carousel-indicators button.active {
            opacity: 1;
        }

        /* Section Styling */
        .section-padding {
            padding: 6rem 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .title-decoration {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 0.5rem;
        }

        .title-decoration i {
            color: var(--primary-orange);
            font-size: 1.5rem;
        }

        /* Buttons */
        .btn-primary-custom {
            background: var(--gradient-warm);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-soft);
            color: white;
        }

        .btn-outline-custom {
            border: 2px solid var(--primary-orange);
            color: var(--primary-orange);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            background: transparent;
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background: var(--primary-orange);
            color: white;
        }

        .btn-teal {
            background: var(--accent-teal);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }

        .btn-teal:hover {
            background: #3d9590;
            color: white;
            transform: translateY(-2px);
        }

        /* Events Section */
        .events-section {
            background: white;
            position: relative;
        }

        .event-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.4s ease;
            height: 100%;
        }

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

        .event-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .event-date-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-orange);
            color: white;
            padding: 0.8rem 1rem;
            border-radius: 15px;
            text-align: center;
            font-weight: 600;
        }

        .event-date-badge .day {
            font-size: 1.5rem;
            line-height: 1;
            display: block;
        }

        .event-date-badge .month {
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        .event-content {
            padding: 1.5rem;
        }

        .event-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .event-location {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .event-description {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .event-tag {
            display: inline-block;
            background: var(--secondary-cream);
            color: var(--primary-orange);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 1rem;
        }

        /* Cat Catalog Section */
        .catalog-section {
            background: var(--gradient-soft);
            position: relative;
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .filter-tab {
            background: white;
            border: 2px solid transparent;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-tab:hover,
        .filter-tab.active {
            border-color: var(--primary-orange);
            color: var(--primary-orange);
        }

        .filter-tab.active {
            background: var(--primary-orange);
            color: white;
        }

        .cat-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.4s ease;
            height: 100%;
        }

        .cat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .cat-image-container {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .cat-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .cat-card:hover .cat-image {
            transform: scale(1.05);
        }

        .cat-badges {
            position: absolute;
            top: 15px;
            left: 15px;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .cat-badge {
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .badge-urgent {
            background: var(--danger-red);
            color: white;
        }

        .badge-new {
            background: var(--success-green);
            color: white;
        }

        .badge-senior {
            background: var(--warning-gold);
            color: white;
        }

        .badge-special {
            background: var(--accent-teal);
            color: white;
        }

        .cat-favorite {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .cat-favorite:hover {
            background: var(--danger-red);
            color: white;
        }

        .cat-favorite.active {
            background: var(--danger-red);
            color: white;
        }

        .cat-info {
            padding: 1.5rem;
        }

        .cat-name {
            font-family: 'Fredoka', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .cat-meta {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .cat-traits {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .cat-trait {
            background: var(--secondary-cream);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .cat-compatibility {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
        }

        .compatibility-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .compatibility-item.yes {
            color: var(--success-green);
        }

        .compatibility-item.no {
            color: var(--danger-red);
        }

        .compatibility-item.maybe {
            color: var(--warning-gold);
        }

        .cat-description {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .cat-actions {
            display: flex;
            gap: 0.5rem;
        }

        .cat-actions .btn {
            flex: 1;
            padding: 0.6rem;
            font-size: 0.9rem;
        }

        /* Cat Profile Modal */
        .modal-cat .modal-content {
            border-radius: var(--border-radius);
            border: none;
            overflow: hidden;
        }

        .modal-cat .modal-header {
            border: none;
            position: absolute;
            top: 0;
            right: 0;
            z-index: 10;
        }

        .modal-cat .btn-close {
            background: white;
            border-radius: 50%;
            padding: 1rem;
            opacity: 1;
        }

        .modal-cat-image {
            height: 350px;
            object-fit: cover;
            width: 100%;
        }

        .modal-cat-body {
            padding: 2rem;
        }

        .care-needs {
            background: #FFF3E0;
            padding: 1rem;
            border-radius: 15px;
            margin-top: 1rem;
        }

        .care-needs h6 {
            color: var(--primary-orange);
            margin-bottom: 0.5rem;
        }

        /* Donations Section */
        .donations-section {
            background: white;
            position: relative;
        }

        .donation-card {
            background: var(--gradient-soft);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .donation-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: rgba(232, 120, 61, 0.1);
            border-radius: 50%;
        }

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

        .donation-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-warm);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .donation-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .donation-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .donation-description {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        /* Donation Amount Buttons */
        .donation-amounts {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .amount-btn {
            flex: 1;
            min-width: 70px;
            padding: 0.8rem;
            border: 2px solid var(--primary-orange);
            background: white;
            border-radius: 15px;
            font-weight: 600;
            color: var(--primary-orange);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .amount-btn:hover,
        .amount-btn.active {
            background: var(--primary-orange);
            color: white;
        }

        .custom-amount {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .custom-amount:focus {
            outline: none;
            border-color: var(--primary-orange);
        }

        /* Emergency Fund */
        .emergency-card {
            background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
            color: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .emergency-card::after {
            content: '\f4e3';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 10rem;
            opacity: 0.1;
        }

        .progress-container {
            margin: 1.5rem 0;
        }

        .progress-bar-custom {
            height: 20px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: white;
            border-radius: 10px;
            transition: width 1s ease;
        }

        .progress-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 0.8rem;
            font-size: 0.9rem;
        }

        /* In-Kind Donations */
        .product-list {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin-top: 2rem;
        }

        .product-category {
            margin-bottom: 2rem;
        }

        .product-category-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-orange);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .product-items {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .product-item {
            background: var(--secondary-cream);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .product-item.urgent {
            background: #FFEBEE;
            color: var(--danger-red);
            border: 1px solid var(--danger-red);
        }

        /* Newsletter Section */
        .newsletter-section {
            background: var(--gradient-warm);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

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

        .newsletter-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .newsletter-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 0.5rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
        }

        .newsletter-form input:focus {
            outline: none;
        }

        .newsletter-form button {
            background: var(--text-dark);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: #1a1815;
            transform: scale(1.05);
        }

        /* Blog Section */
        .blog-section {
            background: var(--secondary-cream);
        }

        .blog-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            height: 100%;
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-8px);
        }

        .blog-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-category {
            display: inline-block;
            background: var(--secondary-cream);
            color: var(--primary-orange);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

        .blog-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Pet Alert Section */
        .alert-section {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .alert-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(231, 76, 60, 0.2);
            border-radius: 50%;
            filter: blur(80px);
        }

        .alert-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            height: 100%;
            transition: all 0.3s ease;
        }

        .alert-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .alert-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .alert-badge.lost {
            background: var(--danger-red);
        }

        .alert-badge.found {
            background: var(--success-green);
        }

        .alert-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1rem;
        }

        .alert-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .alert-location {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

        .alert-date {
            font-size: 0.85rem;
            opacity: 0.7;
        }

        .alert-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 2rem;
        }

        .alert-form h4 {
            margin-bottom: 1.5rem;
        }

        .alert-form .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 15px;
            padding: 0.8rem 1rem;
            margin-bottom: 1rem;
        }

        .alert-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .alert-form .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--primary-orange);
            box-shadow: none;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-brand {
            font-family: 'Fredoka', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
        }

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

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer-contact {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-contact p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .footer-contact i {
            color: var(--primary-orange);
            width: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Member Login Modal */
        .modal-member .modal-content {
            border-radius: var(--border-radius);
            border: none;
        }

        .modal-member .modal-header {
            border: none;
            padding: 2rem 2rem 1rem;
        }

        .modal-member .modal-body {
            padding: 1rem 2rem 2rem;
        }

        .modal-member .modal-title {
            font-family: 'Fredoka', sans-serif;
            font-size: 1.5rem;
        }

        .form-floating label {
            color: var(--text-muted);
        }

        .form-floating .form-control {
            border-radius: 15px;
            border: 2px solid #e0e0e0;
            padding: 1rem;
        }

        .form-floating .form-control:focus {
            border-color: var(--primary-orange);
            box-shadow: none;
        }

        .member-benefits {
            background: var(--secondary-cream);
            border-radius: 15px;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }

        .member-benefits h6 {
            margin-bottom: 1rem;
            color: var(--primary-orange);
        }

        .member-benefits ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .member-benefits li {
            padding: 0.3rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .member-benefits li i {
            color: var(--success-green);
        }

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

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

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        .pulse-animation {
            animation: pulse 2s ease-in-out infinite;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-stats {
                gap: 2rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .cat-slide {
                height: 400px;
            }
        }

        @media (max-width: 767px) {
            .section-padding {
                padding: 4rem 0;
            }

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

            .hero-stats {
                flex-wrap: wrap;
                gap: 1.5rem;
            }

            .stat-item {
                flex: 1 1 40%;
            }

            .carousel-control-prev,
            .carousel-control-next {
                display: none;
            }

            .cat-slide {
                height: 350px;
            }

            .filter-tabs {
                gap: 0.3rem;
            }

            .filter-tab {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-warm);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: var(--shadow-soft);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
        }