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

        body {
            font-family: 'Balsamiq Sans', cursive;
            color: #171a1f;
            overflow-x: hidden;
        }

        /* ===========================
           MOBILE FIRST - BASE STYLES
        =========================== */

        /* Navigation - Mobile First */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            background: white;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
            animation: slideDown 0.5s ease-out;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        /* Hide navbar when mobile menu is active */
        nav.menu-open {
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 14px;
            animation: fadeIn 0.8s ease-out;
            flex: 1;
        }

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

        .logo img {
            height: 45px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        /* Hide desktop nav on mobile */
        .nav-links,
        .nav-actions {
            display: none;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
            transition: transform 0.3s ease;
            position: relative;
        }

        .mobile-menu-toggle:active {
            transform: scale(0.9);
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #171A1F;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
            background: white;
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
            background: white;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
            z-index: 1003;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active .mobile-menu-header {
            transform: translateY(0);
        }

        .mobile-menu-header .logo img {
            height: 45px;
            width: auto;
        }

        .mobile-menu-content {
            background: white;
            width: 85%;
            max-width: 320px;
            height: 100vh;
            padding: 80px 30px 30px;
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow-y: auto;
            position: relative;
        }

        .mobile-menu.active .mobile-menu-content {
            transform: translateX(0);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 32px;
            cursor: pointer;
            color: #171A1F;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding: 0;
        }

        .mobile-menu-close:active {
            transform: scale(0.9) rotate(90deg);
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-links li {
            margin: 0;
            opacity: 0;
            transform: translateX(-20px);
        }

        .mobile-menu.active .mobile-nav-links li {
            animation: slideInLeft 0.5s ease forwards;
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(1) { animation-delay: 0.1s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(2) { animation-delay: 0.15s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(3) { animation-delay: 0.2s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(4) { animation-delay: 0.25s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(5) { animation-delay: 0.3s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(6) { animation-delay: 0.35s; }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: #171A1F;
            font-size: 18px;
            font-weight: 500;
            display: block;
            padding: 15px 10px;
            border-bottom: 1px solid #E3E8EF;
            transition: all 0.3s ease;
        }

        .mobile-nav-links a:hover,
        .mobile-nav-links a:active {
            color: #5CC778;
            padding-left: 20px;
            background: rgba(92, 199, 120, 0.05);
        }

        .mobile-nav-actions {
            margin-top: 30px;
            opacity: 0;
            transform: translateY(20px);
        }

        .mobile-menu.active .mobile-nav-actions {
            animation: fadeInUp 0.5s ease 0.4s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Buttons - Mobile First */
        .btn {
            padding: 14px 24px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: none;
            font-family: 'Balsamiq Sans', cursive;
            width: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:active::before {
            width: 300px;
            height: 300px;
        }

        .btn-donate {
            background: #FF6B6B;
            color: white;
            margin-bottom: 10px;
        }

        .btn-donate:active {
            background: #ff5252;
            transform: scale(0.98);
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
        }

        .btn-whatsapp:active {
            background: #20ba5a;
            transform: scale(0.98);
        }

        .btn-appointment {
            background: #FFB5B5;
            color: #171a1f;
            margin-bottom: 12px;
        }

        .btn-appointment:active {
            background: #ffa0a0;
            transform: scale(0.98);
        }

        .btn-donate-hero {
            background: #5CC778;
            color: white;
            margin-bottom: 12px;
        }

        .btn-donate-hero:active {
            background: #4db868;
            transform: scale(0.98);
        }

        .btn-chat {
            background: #25D366;
            color: white;
        }

        .btn-chat:active {
            background: #20ba5a;
            transform: scale(0.98);
        }

        /* Hero Section - Mobile First */
        .hero {
            margin-top: 70px;
            background: linear-gradient(135deg, #F4FBF6 0%, #E8F5EC 100%);
            border-radius: 0px 0px 24px 24px;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: auto;
            text-align: center;
        }

        .hero-content {
            max-width: 100%;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero h1 {
            font-family: 'Balsamiq Sans', cursive;
            font-size: 28px;
            font-weight: 700;
            color: #5CC778;
            line-height: 34px;
            margin-bottom: 16px;
            animation: slideInFromLeft 0.8s ease-out;
        }

        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero h2 {
            font-family: 'Balsamiq Sans', cursive;
            font-size: 16px;
            line-height: 22px;
            font-weight: 500;
            color: #FF9B9B;
            margin-bottom: 16px;
            animation: slideInFromRight 0.8s ease-out;
        }

        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero p {
            font-size: 15px;
            color: #565D6DFF;
            margin-bottom: 24px;
            line-height: 1.6;
            animation: fadeIn 1s ease-out 0.3s both;
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
            max-width: 400px;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .hero-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            background: transparent;
            border-radius: 20px;
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 30px;
            animation: zoomIn 1s ease-out 0.3s both;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .hero-image-placeholder {
            width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 16px;
        }

        .hero-image-placeholder img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(92, 199, 120, 0.2);
            transition: transform 0.3s ease;
        }

        /* Services Section - Mobile First */
        .services {
            padding: 50px 20px;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 40px;
            font-family: 'Balsamiq Sans', cursive;
            line-height: 1.3;
        }

        .section-title span {
            color: #5CC778;
            display: inline-block;
            position: relative;
        }

        .section-title span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #5CC778;
            border-radius: 2px;
            animation: expandWidth 1s ease-out;
        }

        @keyframes expandWidth {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .service-card {
            background: #FFFFFF;
            border-radius: 16px;
            padding: 28px 20px;
            border: 1px solid #F4FBF6;
            box-shadow: 0px 2px 8px rgba(23, 26, 31, 0.08);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.animate {
            animation: cardFadeIn 0.6s ease forwards;
        }

        @keyframes cardFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card.featured {
            background: linear-gradient(135deg, #5DC8795C 0%, #E8F5EC 100%);
            border: 2px solid #5CC778;
        }

        .service-card:active {
            transform: scale(0.98);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: rgba(93, 200, 121, 0.15);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5CC778;
            font-size: 28px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotateY(360deg);
            background: #5CC778;
            color: white;
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #171a1f;
            font-family: 'Balsamiq Sans', cursive;
        }

        .service-card p {
            font-size: 14px;
            color: #565D6D;
            line-height: 1.6;
        }

        /* ===========================
           DIRECTOR'S WORD SECTION
        =========================== */
        .directors-word {
            padding: 60px 20px;
            background: linear-gradient(135deg, #FFF9F0 0%, #FFE8E8 100%);
            position: relative;
            overflow: hidden;
        }

        .directors-word::before {
            content: '💝';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 120px;
            opacity: 0.05;
            animation: float 6s ease-in-out infinite;
        }

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

        .directors-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
        }

        .directors-image-wrapper {
            position: relative;
            animation: fadeInUp 1s ease-out;
        }

        .directors-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            border: 6px solid white;
            box-shadow: 0 20px 60px rgba(92, 199, 120, 0.3);
            position: relative;
            transition: transform 0.5s ease;
        }

        .directors-image:hover {
            transform: scale(1.05) rotate(5deg);
        }

        .directors-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .directors-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FFB5B5 0%, #FF6B6B 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            border: 4px solid white;
            animation: pulse 2s ease-in-out infinite;
        }

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

        .directors-quote-mark {
            position: absolute;
            top: -20px;
            left: -20px;
            font-size: 120px;
            color: #5CC778;
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .directors-content {
            animation: fadeIn 1.2s ease-out 0.3s both;
            text-align: center;
        }

        .directors-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(92, 199, 120, 0.1);
            border: 2px solid #5CC778;
            border-radius: 24px;
            color: #5CC778;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .directors-title {
            font-size: 32px;
            line-height: 38px;
            font-weight: 700;
            margin-bottom: 30px;
            font-family: 'Balsamiq Sans', cursive;
        }

        .directors-message {
            margin-bottom: 30px;
        }

        .directors-quote {
            font-size: 18px;
            line-height: 28px;
            font-style: italic;
            color: #171a1f;
            margin-bottom: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.7);
            border-left: 4px solid #5CC778;
            border-radius: 12px;
            position: relative;
        }

        .directors-text {
            font-size: 15px;
            line-height: 24px;
            color: #565D6D;
            margin-bottom: 16px;
            text-align: left;
        }

        .directors-signature {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 2px dashed #E3E8EF;
        }

        .signature-line {
            opacity: 0;
            animation: drawSignature 2s ease-out 1s forwards;
        }

        @keyframes drawSignature {
            to { opacity: 1; }
        }

        .directors-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .directors-info strong {
            font-size: 18px;
            color: #171a1f;
        }

        .directors-info span {
            font-size: 14px;
            color: #565D6D;
        }

        /* ===========================
           GALLERY PREVIEW SECTION
        =========================== */
        .gallery-preview {
            padding: 60px 20px;
            background: white;
            position: relative;
        }

        .gallery-preview-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .gallery-preview-subtitle {
            font-size: 16px;
            color: #565D6D;
            margin-top: 12px;
        }

        .gallery-preview-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .gallery-preview-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            text-decoration: none;
        }

        .gallery-preview-item.large {
            grid-column: span 2;
            height: 300px;
        }

        .gallery-preview-item.tall {
            grid-row: span 2;
            height: 400px;
        }

        .gallery-preview-item:not(.large):not(.tall) {
            height: 192px;
        }

        .gallery-preview-item:hover {
            transform: scale(1.03) translateY(-8px);
            box-shadow: 0 12px 32px rgba(92, 199, 120, 0.3);
            z-index: 10;
        }

        .gallery-preview-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-preview-item:hover img {
            transform: scale(1.2) rotate(2deg);
        }

        .gallery-preview-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(92, 199, 120, 0.95) 0%, rgba(255, 181, 181, 0.95) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-preview-item:hover .gallery-preview-overlay {
            opacity: 1;
        }

        .gallery-preview-content {
            text-align: center;
            color: white;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .gallery-preview-item:hover .gallery-preview-content {
            transform: translateY(0);
        }

        .gallery-preview-content i {
            font-size: 48px;
            margin-bottom: 12px;
            display: block;
        }

        .gallery-preview-content h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            font-family: 'Balsamiq Sans', cursive;
        }

        .gallery-preview-content span {
            font-size: 14px;
            opacity: 0.9;
        }

        .gallery-preview-cta {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .btn-gallery {
            background: linear-gradient(135deg, #5CC778 0%, #4db868 100%);
            color: white;
            padding: 16px 40px;
            border-radius: 24px;
            font-size: 16px;
            font-weight: 700;
            box-shadow: 0 8px 24px rgba(92, 199, 120, 0.3);
            max-width: 300px;
        }

        .btn-gallery:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(92, 199, 120, 0.4);
        }

        .gallery-counter {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 16px 32px;
            background: linear-gradient(135deg, #F4FBF6 0%, #E8F5EC 100%);
            border-radius: 16px;
            border: 2px solid #5CC778;
        }

        .counter-number {
            font-size: 32px;
            font-weight: 700;
            color: #5CC778;
            display: block;
        }

        .counter-label {
            font-size: 14px;
            color: #565D6D;
        }

        /* Testimonials Section - Mobile First */
        .testimonials {
            padding: 50px 20px;
            background: linear-gradient(135deg, #5DC8793D 0%, #E8F5EC 100%);
            border-radius: 24px 0px 24px 0px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 30px 24px;
            border: 2px solid #F4FBF6;
            box-shadow: 0px 4px 16px rgba(23, 26, 31, 0.08);
            text-align: center;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .testimonial-card.animate {
            animation: cardFadeIn 0.6s ease forwards;
        }

        .testimonial-card:active {
            transform: scale(0.98);
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #5CC778 0%, #4db868 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 4px solid white;
            box-shadow: 0 4px 12px rgba(92, 199, 120, 0.3);
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover .testimonial-avatar {
            transform: scale(1.1) rotate(5deg);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-text {
            font-size: 14px;
            font-style: italic;
            color: #171a1f;
            margin-bottom: 16px;
            line-height: 1.7;
        }

        .testimonial-author {
            font-size: 15px;
            color: #5CC778;
            font-weight: 700;
        }

        /* CTA Section - Mobile First */
        .cta {
            padding: 50px 20px;
            text-align: center;
            background: white;
        }

        .cta h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
            font-family: 'Balsamiq Sans', cursive;
            line-height: 1.3;
        }

        .cta h2 span {
            color: #FFB5B5;
            display: inline-block;
            animation: bounce 2s ease-in-out infinite;
        }

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

        .cta p {
            font-size: 15px;
            color: #565D6D;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .cta .btn {
            max-width: 400px;
            margin: 0 auto;
        }

        /* Footer - Mobile First */
        footer {
            padding: 40px 20px;
            background: white;
            border-top: 2px solid #F4FBF6;
            display: flex;
            flex-direction: column;
            gap: 24px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
            list-style: none;
        }

        .footer-links a {
            text-decoration: none;
            color: #565D6D;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #5CC778;
        }

        .social-links {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #F4FBF6;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5CC778;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            font-size: 18px;
        }

        .social-icon:active {
            background: #5CC778;
            color: white;
            transform: scale(0.9) rotate(10deg);
        }

        /* Scroll Reveal Classes */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
        }

        .scroll-reveal.active {
            animation: scrollReveal 0.8s ease forwards;
        }

        @keyframes scrollReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Utility Classes */
        .text-gradient {
            background: linear-gradient(135deg, #5CC778 0%, #4db868 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Loading Animation */
        .loading {
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }

        /* ===========================
           TABLET - 600px and up
        =========================== */
        @media (min-width: 600px) {
            nav {
                padding: 16px 40px;
            }

            .logo img {
                height: 50px;
            }

            .mobile-menu-header .logo img {
                height: 50px;
            }

            .hero {
                padding: 60px 40px;
                margin-top: 80px;
            }

            .hero h1 {
                font-size: 38px;
                line-height: 44px;
            }

            .hero h2 {
                font-size: 20px;
                line-height: 26px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-actions {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero-actions .btn {
                width: auto;
                min-width: 180px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .directors-word {
                padding: 80px 40px;
            }
            
            .directors-image {
                width: 250px;
                height: 250px;
            }
            
            .directors-title {
                font-size: 42px;
                line-height: 48px;
            }
            
            .directors-quote {
                font-size: 20px;
                line-height: 32px;
            }

            .gallery-preview {
                padding: 80px 40px;
            }
            
            .gallery-preview-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
            
            .gallery-preview-item.large {
                grid-column: span 2;
                height: 350px;
            }
            
            .gallery-preview-item.tall {
                height: 450px;
            }
            
            .gallery-preview-item:not(.large):not(.tall) {
                height: 215px;
            }

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

            .section-title {
                font-size: 32px;
            }

            .cta h2 {
                font-size: 34px;
            }

            footer {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 40px;
            }

            .footer-links {
                flex-direction: row;
                gap: 24px;
            }
        }

        /* ===========================
           TABLET LANDSCAPE - 900px and up
        =========================== */
        @media (min-width: 900px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 28px;
            }

            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 28px;
            }

            .hero {
                padding: 70px 60px;
            }

            .hero h1 {
                font-size: 48px;
                line-height: 54px;
            }

            .hero h2 {
                font-size: 22px;
                line-height: 28px;
            }

            .section-title {
                font-size: 38px;
            }
        }

        /* ===========================
           DESKTOP - 1024px and up
        =========================== */
        @media (min-width: 1024px) {
            nav {
                padding: 16px 80px;
            }

            .logo img {
                height: 55px;
            }

            .mobile-menu-toggle {
                display: none;
            }

            .nav-links {
                display: flex;
                gap: 32px;
                list-style: none;
            }

            .nav-links a {
                text-decoration: none;
                color: #171a1f;
                font-size: 14px;
                font-weight: 400;
                transition: all 0.3s ease;
                position: relative;
            }

            .nav-links a::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 0;
                height: 2px;
                background: #5CC778;
                transition: width 0.3s ease;
            }

            .nav-links a:hover {
                color: #5CC778;
            }

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

            .nav-actions {
                display: flex;
                gap: 12px;
            }

            .nav-actions .btn {
                width: auto;
            }

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

            .btn-donate:hover {
                background: #ff5252;
            }

            .btn-whatsapp:hover {
                background: #20ba5a;
            }

            .btn-appointment:hover {
                background: #ffa0a0;
            }

            .btn-donate-hero:hover {
                background: #4db868;
            }

            .btn-chat:hover {
                background: #20ba5a;
            }

            .hero {
                flex-direction: row;
                text-align: left;
                padding: 80px;
                min-height: 640px;
            }

            .hero-content {
                max-width: 600px;
            }

            .hero h1 {
                font-size: 56px;
                line-height: 62px;
            }

            .hero h2 {
                font-size: 24px;
                line-height: 30px;
            }

            .hero-actions {
                justify-content: flex-start;
            }

            .hero-image {
                width: 500px;
                margin-top: 0;
                margin-left: 40px;
                padding: 40px;
                background: linear-gradient(135deg, #F4FBF6 0%, #E8F5EC 100%);
            }

            .services,
            .testimonials,
            .cta {
                padding: 80px;
            }

            .services-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }

            .service-card:hover {
                transform: translateY(-8px);
                box-shadow: 0px 12px 32px rgba(93, 200, 121, 0.2);
            }

            .directors-word {
                padding: 100px 80px;
            }
            
            .directors-container {
                flex-direction: row;
                gap: 60px;
                text-align: left;
            }
            
            .directors-content {
                flex: 1;
                text-align: left;
            }
            
            .directors-image {
                width: 300px;
                height: 300px;
            }
            
            .directors-title {
                font-size: 48px;
                line-height: 54px;
            }
            
            .directors-signature {
                flex-direction: row;
                justify-content: flex-start;
            }

            .gallery-preview {
                padding: 100px 80px;
            }
            
            .gallery-preview-grid {
                gap: 24px;
            }
            
            .gallery-preview-item.large {
                height: 400px;
            }
            
            .gallery-preview-item.tall {
                height: 500px;
            }
            
            .gallery-preview-item:not(.large):not(.tall) {
                height: 238px;
            }
            
            .gallery-preview-cta {
                flex-direction: row;
                justify-content: center;
            }

            .testimonial-card:hover {
                transform: translateY(-8px);
                box-shadow: 0px 12px 32px rgba(93, 200, 121, 0.15);
            }

            .section-title {
                font-size: 42px;
            }

            .cta h2 {
                font-size: 48px;
            }

            footer {
                padding: 40px 80px;
            }

            .social-icon:hover {
                background: #5CC778;
                color: white;
                transform: scale(1.15) rotate(10deg);
            }
        }

        /* ===========================
           LARGE DESKTOP - 1280px and up
        =========================== */
        @media (min-width: 1280px) {
            .services-grid,
            .testimonials-grid {
                max-width: 1400px;
            }
        }