 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            /* Smooth scrolling */
            scroll-behavior: smooth;
            /* Better text rendering on mobile */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            /* Prevent font size adjustment on orientation change */
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
            /* Prevent horizontal overflow */
            overflow-x: hidden;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
            /* Better touch scrolling on iOS */
            -webkit-overflow-scrolling: touch;
            width: 100%;
            max-width: 100vw;
        }

        /* Prevent images and elements from overflowing */
        img,
        video,
        iframe {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Ensure containers don't overflow */
        .container,
        .hero-content {
            max-width: 100%;
            overflow: visible;
        }
        
        .services-section,
        .mission-vision,
        .programs-section,
        .permits-section,
        .news-section,
        .contact-section,
        .stats-section {
            max-width: 100%;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            margin-top: 0;
            padding-top: 0;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.8) 0%, 
                rgba(118, 75, 162, 0.7) 50%,
                rgba(243, 133, 206, 0.6) 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.3rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .hero-subtitle {
            font-size: clamp(0.85rem, 2.5vw, 1.5rem);
            font-weight: 300;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.4;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .hero-cta {
            display: inline-flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            /* Touch-friendly improvements */
            -webkit-tap-highlight-color: rgba(243, 133, 206, 0.3);
            touch-action: manipulation;
            user-select: none;
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-button.primary {
            background: linear-gradient(135deg, #F385CE, #e91e63);
            border-color: transparent;
        }

        .cta-button.primary:hover {
            background: linear-gradient(135deg, #e91e63, #c2185b);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(243, 133, 206, 0.4);
        }

        /* Clock Widget */
        .clock-widget {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 1rem 1.5rem;
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
            z-index: 4;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        /* Main Content Section */
        .main-content {
            padding: 2rem 0;
            background: linear-gradient(to bottom, #f8f9fa, #ffffff);
            position: relative;
            z-index: 1;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            align-items: start;
        }

        /* Services Slider */
        .services-section {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(243, 133, 206, 0.1);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .slider-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            background: #fff;
            width: 100%;
        }

        .slides {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
        }

        .slide {
            min-width: 100%;
            width: 100%;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            flex-shrink: 0;
        }

        .slide a {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 2rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .slide:hover .slide-overlay {
            transform: translateY(0);
        }

        .slide-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .slide-description {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* Slider Controls */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #2c3e50;
            /* Touch-friendly improvements */
            -webkit-tap-highlight-color: rgba(243, 133, 206, 0.3);
            touch-action: manipulation;
        }

        .slider-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .slider-nav.prev {
            left: 1rem;
        }

        .slider-nav.next {
            right: 1rem;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            padding: 1.5rem;
            background: white;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
            /* Touch-friendly tap target */
            padding: 8px;
            margin: 0;
            background-clip: content-box;
        }

        .slider-dot.active {
            background: linear-gradient(135deg, #F385CE, #e91e63);
            background-clip: content-box;
            transform: scale(1.15);
        }

        /* Mission & Vision */
        .mission-vision {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(243, 133, 206, 0.1);
            height: fit-content;
            position: sticky;
            top: 2rem;
        }

        .mission-vision h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 0.75rem;
            position: relative;
            padding-bottom: 0.25rem;
        }

        .mission-vision h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, #F385CE, #e91e63);
            border-radius: 2px;
        }

        .mission-vision p {
            color: #5a6c7d;
            margin-bottom: 1rem;
            line-height: 1.6;
            text-align: justify;
        }

        .mission-vision .highlight {
            background: linear-gradient(135deg, rgba(243, 133, 206, 0.1), rgba(233, 30, 99, 0.1));
            padding: 0.75rem;
            border-radius: 10px;
            border-left: 4px solid #F385CE;
            margin: 0.5rem 0;
        }

        /* Statistics Section */
        .stats-section {
            margin-top: 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 2rem 1rem;
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Environmental Programs Section */
        .programs-section {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(243, 133, 206, 0.1);
            margin-bottom: 2rem;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .program-card {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(243, 133, 206, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #F385CE, #e91e63);
        }

        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(243, 133, 206, 0.2);
        }

        .program-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .program-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .program-card p {
            color: #5a6c7d;
            margin-bottom: 0.75rem;
            line-height: 1.5;
        }

        .program-card ul {
            list-style: none;
            padding: 0;
        }

        .program-card li {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
            position: relative;
            padding-left: 1rem;
        }

        .program-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #F385CE;
            font-weight: bold;
        }

        /* Permits Section */
        .permits-section {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(243, 133, 206, 0.1);
            margin-bottom: 2rem;
        }

        .permits-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .permit-category {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(243, 133, 206, 0.1);
        }

        .permit-category h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.75rem;
            border-bottom: 2px solid #F385CE;
            padding-bottom: 0.25rem;
        }

        .permit-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .permit-item {
            background: white;
            border-radius: 10px;
            padding: 1.25rem;
            border-left: 4px solid #F385CE;
            transition: all 0.3s ease;
        }

        .permit-item:hover {
            background: rgba(243, 133, 206, 0.05);
            transform: translateX(5px);
        }

        .permit-name {
            display: block;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.25rem;
        }

        .permit-desc {
            font-size: 0.9rem;
            color: #7f8c8d;
        }

        /* News Section */
        .news-section {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(243, 133, 206, 0.1);
            margin-bottom: 2rem;
        }

        .news-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .news-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(243, 133, 206, 0.1);
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(243, 133, 206, 0.2);
        }

        .news-card.featured {
            grid-row: span 2;
        }

        .news-image {
            height: 150px;
            overflow: hidden;
        }

        .news-card.featured .news-image {
            height: 200px;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .news-card:hover .news-image img {
            transform: scale(1.05);
        }

        .news-content {
            padding: 1rem;
        }

        .news-date {
            font-size: 0.8rem;
            color: #F385CE;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .news-content h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 0.5rem 0;
            line-height: 1.3;
        }

        .news-card.featured .news-content h3 {
            font-size: 1.3rem;
        }

        .news-content p {
            color: #5a6c7d;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 0.75rem;
        }

        .read-more {
            color: #F385CE;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .read-more:hover {
            color: #e91e63;
        }

        /* Contact Section */
        .contact-section {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(243, 133, 206, 0.1);
            margin-bottom: 2rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-info h3,
        .contact-hours h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 1rem;
            border-bottom: 2px solid #F385CE;
            padding-bottom: 0.25rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 0.75rem;
            background: rgba(243, 133, 206, 0.05);
            border-radius: 10px;
        }

        .contact-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-item div {
            color: #5a6c7d;
            line-height: 1.5;
        }

        .contact-item strong {
            color: #2c3e50;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            margin-bottom: 0.5rem;
            background: rgba(243, 133, 206, 0.05);
            border-radius: 10px;
        }

        .day {
            font-weight: 600;
            color: #2c3e50;
        }

        .time {
            color: #F385CE;
            font-weight: 500;
        }

        /* ========================================
           RESPONSIVE DESIGN - MOBILE FIRST
           ======================================== */

        /* Large Tablets and Small Desktops (1024px and below) */
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .mission-vision {
                position: static;
            }

            .programs-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
            
            .permits-categories {
                grid-template-columns: 1fr;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .news-card.featured {
                grid-row: span 1;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }

        /* Tablets and Mobile Landscape (768px and below) */
        @media (max-width: 768px) {
            /* Hero Section - More Compact */
            .hero-section {
                margin-top: 0;
                padding-top: 0;
                min-height: 55vh;
                height: auto;
            }
            
            .hero-content {
                padding: 1rem;
            }

            .hero-title {
                font-size: 1.6rem;
                line-height: 1.2;
                margin-bottom: 0.75rem;
            }

            .hero-subtitle {
                font-size: 0.95rem;
                line-height: 1.3;
                margin-bottom: 1rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
                gap: 0.5rem;
            }

            .cta-button {
                width: 100%;
                max-width: 280px;
                justify-content: center;
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
            }

            /* Clock Widget - Compact mobile positioning */
            .clock-widget {
                position: absolute;
                top: 0.5rem;
                right: 0.5rem;
                left: auto;
                padding: 0.5rem 0.75rem;
                font-size: 0.65rem;
                max-width: calc(100% - 1rem);
                border-radius: 8px;
            }

            /* Main Content - Compact */
            .container {
                padding: 0 0.75rem;
            }

            .main-content {
                padding: 1rem 0;
            }

            /* Sections - Compact */
            .services-section,
            .mission-vision,
            .programs-section,
            .permits-section,
            .news-section,
            .contact-section {
                padding: 1rem;
                margin-bottom: 1rem;
                border-radius: 12px;
                width: 100%;
                overflow: hidden;
            }

            .section-title {
                font-size: 1.4rem;
                margin-bottom: 0.5rem;
            }

            .section-subtitle {
                font-size: 0.85rem;
                margin-bottom: 0.75rem;
            }

            /* Slider - Compact */
            .slider-container {
                width: 100%;
                max-width: 100%;
            }
            
            .slide {
                width: 100%;
                min-width: 100%;
            }
            
            .slide img {
                height: 220px;
                width: 100%;
                object-fit: cover;
                object-position: center;
            }
            
            /* Always show overlay on mobile - disable hover */
            .slide-overlay {
                transform: translateY(0) !important;
                background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.85));
                padding: 1.5rem 1rem;
            }
            
            .slide:hover .slide-overlay {
                transform: translateY(0) !important;
            }
            
            .slide-title {
                font-size: 1.1rem;
                margin-bottom: 0.4rem;
            }
            
            .slide-description {
                font-size: 0.8rem;
                line-height: 1.3;
            }

            .slider-nav {
                width: 35px;
                height: 35px;
                font-size: 1.3rem;
            }

            .slider-nav.prev {
                left: 0.35rem;
            }

            .slider-nav.next {
                right: 0.35rem;
            }

            .slider-dots {
                padding: 0.75rem;
            }

            .slide-overlay {
                padding: 1rem;
            }

            .slide-title {
                font-size: 1.1rem;
                margin-bottom: 0.35rem;
            }

            .slide-description {
                font-size: 0.8rem;
                line-height: 1.3;
            }

            /* Mission & Vision - Compact */
            .mission-vision h2 {
                font-size: 1.2rem;
                margin-bottom: 0.5rem;
            }

            .mission-vision p {
                font-size: 0.85rem;
                line-height: 1.5;
                margin-bottom: 0.75rem;
            }

            .mission-vision .highlight {
                padding: 0.6rem;
                margin: 0.4rem 0;
            }

            /* Programs - Compact */
            .programs-grid {
                grid-template-columns: 1fr;
                gap: 0.85rem;
            }

            .program-card {
                padding: 1rem;
            }

            .program-icon {
                font-size: 1.8rem;
                margin-bottom: 0.35rem;
            }

            .program-card h3 {
                font-size: 1.05rem;
                margin-bottom: 0.4rem;
            }

            .program-card p {
                font-size: 0.85rem;
                margin-bottom: 0.5rem;
                line-height: 1.4;
            }

            .program-card li {
                font-size: 0.8rem;
                margin-bottom: 0.2rem;
            }

            /* Stats - Compact */
            .stats-section {
                padding: 1.5rem 1rem;
                margin-top: 1rem;
                margin-bottom: 1rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
                margin-top: 1rem;
            }

            .stat-item {
                padding: 1rem 0.75rem;
            }

            .stat-number {
                font-size: 1.8rem;
                margin-bottom: 0.25rem;
            }

            .stat-label {
                font-size: 0.85rem;
            }

            /* Permits - Compact */
            .permits-categories {
                gap: 0.85rem;
            }

            .permit-category {
                padding: 1rem;
            }

            .permit-category h3 {
                font-size: 1.05rem;
                margin-bottom: 0.5rem;
            }

            .permit-item {
                padding: 0.65rem;
                margin-bottom: 0.4rem;
            }

            .permit-name {
                font-size: 0.9rem;
                margin-bottom: 0.2rem;
            }

            .permit-desc {
                font-size: 0.8rem;
                line-height: 1.3;
            }

            /* News Cards - Compact */
            .news-image {
                height: 140px;
            }

            .news-card.featured .news-image {
                height: 140px;
            }

            .news-content {
                padding: 0.85rem;
            }

            .news-date {
                font-size: 0.75rem;
            }

            .news-content h3 {
                font-size: 0.95rem;
                margin: 0.35rem 0;
            }

            .news-content p {
                font-size: 0.8rem;
                line-height: 1.4;
                margin-bottom: 0.5rem;
            }

            .read-more {
                font-size: 0.8rem;
            }

            /* Contact - Compact */
            .contact-info h3,
            .contact-hours h3 {
                font-size: 1.05rem;
                margin-bottom: 0.65rem;
            }

            .contact-item {
                padding: 0.75rem;
                margin-bottom: 0.65rem;
            }

            .contact-icon {
                font-size: 1.3rem;
            }

            .contact-item div {
                font-size: 0.85rem;
                line-height: 1.4;
            }

            .hours-item {
                padding: 0.75rem;
                margin-bottom: 0.4rem;
                flex-direction: row;
                justify-content: space-between;
            }

            .day {
                font-size: 0.85rem;
            }

            .time {
                font-size: 0.85rem;
            }
        }

        /* Mobile Portrait (480px and below) - VERY COMPACT */
        @media (max-width: 480px) {
            /* Hero Section - Ultra Compact */
            .hero-section {
                min-height: 50vh;
                height: auto;
            }

            .hero-content {
                padding: 0.75rem;
            }

            .hero-title {
                font-size: 1.3rem;
                margin-bottom: 0.5rem;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 0.85rem;
                margin-bottom: 0.85rem;
                line-height: 1.3;
            }

            .cta-button {
                padding: 0.65rem 1rem;
                font-size: 0.8rem;
                max-width: 100%;
                border-radius: 25px;
            }

            /* Clock Widget - Compact */
            .clock-widget {
                position: absolute;
                top: 0.4rem;
                right: 0.4rem;
                font-size: 0.6rem;
                padding: 0.4rem 0.6rem;
                max-width: 60%;
                border-radius: 6px;
            }

            /* Main Content - Ultra Compact */
            .main-content {
                padding: 0.75rem 0;
            }

            .container {
                padding: 0 0.5rem;
            }

            /* Sections - Ultra Compact */
            .services-section,
            .mission-vision,
            .programs-section,
            .permits-section,
            .news-section,
            .contact-section,
            .stats-section {
                padding: 0.75rem;
                margin-bottom: 0.75rem;
                border-radius: 10px;
                width: 100%;
                overflow: hidden;
            }

            .section-title {
                font-size: 1.2rem;
                margin-bottom: 0.4rem;
            }

            .section-subtitle {
                font-size: 0.75rem;
                margin-bottom: 0.6rem;
                line-height: 1.3;
            }

            /* Slider - Ultra Compact */
            .slider-container {
                width: 100%;
                max-width: 100%;
                border-radius: 12px;
            }
            
            .slide {
                width: 100%;
                min-width: 100%;
            }
            
            .slide img {
                height: 180px;
                width: 100%;
                object-fit: cover;
                object-position: center;
            }
            
            /* Always show overlay on mobile - disable hover */
            .slide-overlay {
                transform: translateY(0) !important;
                background: linear-gradient(transparent 15%, rgba(0, 0, 0, 0.85));
                padding: 1.25rem 0.875rem;
            }
            
            .slide:hover .slide-overlay {
                transform: translateY(0) !important;
            }
            
            .slide-title {
                font-size: 1rem;
                margin-bottom: 0.35rem;
            }
            
            .slide-description {
                font-size: 0.75rem;
                line-height: 1.3;
            }

            .slider-nav {
                width: 32px;
                height: 32px;
                font-size: 1.1rem;
            }

            .slider-nav.prev {
                left: 0.2rem;
            }

            .slider-nav.next {
                right: 0.2rem;
            }

            .slide-overlay {
                padding: 0.75rem;
            }

            .slide-title {
                font-size: 1rem;
                margin-bottom: 0.25rem;
            }

            .slide-description {
                font-size: 0.75rem;
                line-height: 1.25;
            }

            .slider-dots {
                padding: 0.6rem;
            }

            .slider-dot {
                width: 8px;
                height: 8px;
                padding: 6px;
            }

            /* Mission & Vision - Ultra Compact */
            .mission-vision h2 {
                font-size: 1.1rem;
                margin-bottom: 0.4rem;
            }

            .mission-vision p {
                font-size: 0.8rem;
                line-height: 1.4;
                margin-bottom: 0.5rem;
            }

            .mission-vision .highlight {
                padding: 0.5rem;
                margin: 0.3rem 0;
                border-radius: 6px;
            }

            /* Programs - Ultra Compact */
            .programs-grid {
                gap: 0.65rem;
            }

            .program-card {
                padding: 0.75rem;
            }

            .program-icon {
                font-size: 1.5rem;
                margin-bottom: 0.25rem;
            }

            .program-card h3 {
                font-size: 1rem;
                margin-bottom: 0.3rem;
            }

            .program-card p {
                font-size: 0.8rem;
                margin-bottom: 0.4rem;
                line-height: 1.35;
            }

            .program-card ul {
                margin-top: 0.3rem;
            }

            .program-card li {
                font-size: 0.75rem;
                margin-bottom: 0.15rem;
                line-height: 1.3;
            }

            /* Stats - Ultra Compact */
            .stats-section {
                padding: 1rem 0.75rem;
                margin-top: 0.75rem;
                margin-bottom: 0.75rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
                margin-top: 0.75rem;
            }

            .stat-item {
                padding: 0.85rem 0.5rem;
                border-radius: 10px;
            }

            .stat-number {
                font-size: 1.5rem;
                margin-bottom: 0.2rem;
            }

            .stat-label {
                font-size: 0.75rem;
                line-height: 1.2;
            }

            /* Permits - Ultra Compact */
            .permits-categories {
                gap: 0.65rem;
            }

            .permit-category {
                padding: 0.75rem;
            }

            .permit-category h3 {
                font-size: 1rem;
                margin-bottom: 0.4rem;
                padding-bottom: 0.2rem;
            }

            .permit-item {
                padding: 0.5rem;
                margin-bottom: 0.3rem;
                border-radius: 6px;
            }

            .permit-name {
                font-size: 0.85rem;
                margin-bottom: 0.15rem;
            }

            .permit-desc {
                font-size: 0.75rem;
                line-height: 1.3;
            }

            /* News Cards - Ultra Compact */
            .news-image {
                height: 120px;
            }

            .news-card.featured .news-image {
                height: 120px;
            }

            .news-content {
                padding: 0.65rem;
            }

            .news-date {
                font-size: 0.7rem;
            }

            .news-content h3 {
                font-size: 0.9rem;
                margin: 0.3rem 0;
                line-height: 1.3;
            }

            .news-content p {
                font-size: 0.75rem;
                line-height: 1.35;
                margin-bottom: 0.4rem;
            }

            .read-more {
                font-size: 0.75rem;
            }

            /* Contact - Ultra Compact */
            .contact-info h3,
            .contact-hours h3 {
                font-size: 1rem;
                margin-bottom: 0.5rem;
                padding-bottom: 0.2rem;
            }

            .contact-item {
                padding: 0.65rem;
                margin-bottom: 0.5rem;
                flex-direction: row;
                align-items: flex-start;
                gap: 0.5rem;
                border-radius: 6px;
            }

            .contact-icon {
                font-size: 1.1rem;
            }

            .contact-item div {
                font-size: 0.8rem;
                line-height: 1.35;
            }

            .contact-item strong {
                font-size: 0.85rem;
            }

            .hours-item {
                padding: 0.65rem;
                margin-bottom: 0.3rem;
                border-radius: 6px;
            }

            .day {
                font-size: 0.8rem;
            }

            .time {
                font-size: 0.8rem;
            }
        }

        /* Extra Small Mobile (360px and below) - MAXIMUM COMPACT */
        @media (max-width: 360px) {
            /* Hero - Maximum Compact */
            .hero-section {
                min-height: 45vh;
            }

            .hero-content {
                padding: 0.5rem;
            }

            .hero-title {
                font-size: 1.15rem;
                margin-bottom: 0.4rem;
            }

            .hero-subtitle {
                font-size: 0.8rem;
                margin-bottom: 0.7rem;
            }

            .cta-button {
                padding: 0.6rem 0.9rem;
                font-size: 0.75rem;
            }

            /* Clock Widget */
            .clock-widget {
                font-size: 0.55rem;
                padding: 0.35rem 0.5rem;
            }

            /* Sections */
            .container {
                padding: 0 0.4rem;
            }

            .services-section,
            .mission-vision,
            .programs-section,
            .permits-section,
            .news-section,
            .contact-section,
            .stats-section {
                padding: 0.6rem;
                margin-bottom: 0.6rem;
            }

            .section-title {
                font-size: 1.1rem;
                margin-bottom: 0.35rem;
            }

            .section-subtitle {
                font-size: 0.7rem;
                margin-bottom: 0.5rem;
            }

            /* Slider */
            .slider-container {
                width: 100%;
                max-width: 100%;
                border-radius: 10px;
            }
            
            .slide {
                width: 100%;
                min-width: 100%;
            }
            
            .slide img {
                height: 160px;
                width: 100%;
                object-fit: cover;
                object-position: center;
            }
            
            /* Always show overlay on mobile - disable hover */
            .slide-overlay {
                transform: translateY(0) !important;
                background: linear-gradient(transparent 10%, rgba(0, 0, 0, 0.85));
                padding: 1rem 0.75rem;
            }
            
            .slide:hover .slide-overlay {
                transform: translateY(0) !important;
            }

            .slider-nav {
                width: 28px;
                height: 28px;
                font-size: 1rem;
            }

            .slide-title {
                font-size: 0.95rem;
                margin-bottom: 0.3rem;
            }

            .slide-description {
                font-size: 0.7rem;
                line-height: 1.25;
            }

            /* Stats */
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 0.4rem;
            }

            .stat-item {
                padding: 0.75rem 0.5rem;
            }

            .stat-number {
                font-size: 1.4rem;
            }

            .stat-label {
                font-size: 0.7rem;
            }

            /* Programs */
            .program-card {
                padding: 0.6rem;
            }

            .program-icon {
                font-size: 1.3rem;
            }

            .program-card h3 {
                font-size: 0.95rem;
            }

            .program-card p {
                font-size: 0.75rem;
            }

            .program-card li {
                font-size: 0.7rem;
            }

            /* News */
            .news-image {
                height: 100px;
            }

            .news-content {
                padding: 0.5rem;
            }

            .news-content h3 {
                font-size: 0.85rem;
            }

            .news-content p {
                font-size: 0.7rem;
            }

            /* Contact */
            .contact-item {
                padding: 0.5rem;
            }

            .contact-icon {
                font-size: 1rem;
            }

            .contact-item div,
            .day,
            .time {
                font-size: 0.75rem;
            }
        }

        /* ========================================
           TOUCH & ACCESSIBILITY IMPROVEMENTS
           ======================================== */

        /* Ensure minimum touch target size (44x44px recommended by Apple/Google) */
        @media (hover: none) and (pointer: coarse) {
            /* This targets touch devices */
            
            .read-more,
            .news-card a,
            .slide a {
                min-height: 44px;
                display: inline-flex;
                align-items: center;
            }

            /* Better tap highlighting for links */
            a {
                -webkit-tap-highlight-color: rgba(243, 133, 206, 0.2);
            }

            /* Disable hover transform on program cards (use tap instead) */
            .program-card:hover {
                transform: none;
            }

            .news-card:hover {
                transform: none;
            }

            /* Make sure buttons have good contrast */
            .cta-button,
            .slider-nav {
                outline-offset: 2px;
            }

            /* Improve slider dot touch targets on mobile */
            .slider-dot {
                padding: 10px;
                margin: 2px;
            }
        }

        /* Focus styles for keyboard navigation accessibility */
        a:focus,
        button:focus,
        .slider-nav:focus,
        .slider-dot:focus {
            outline: 2px solid #F385CE;
            outline-offset: 2px;
        }

        /* Prevent text selection on UI elements */
        .slider-nav,
        .slider-dot,
        .cta-button {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Scroll animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Smooth scrolling for the entire page */
        html {
            scroll-behavior: smooth;
        }

        /* Ensure proper spacing between sections */
        .main-content > .container > div {
            margin-bottom: 2rem;
        }

        .main-content > .container > div:last-child {
            margin-bottom: 0;
        }