
    /* Search Box */
        .search-container {
            width: 100%;
            max-width: 600px;
            margin-bottom: 40px;
            position: relative;
            animation: fadeInUp 0.8s ease 0.3s both;
        }
        
        .search-box {
            display: flex;
            background: white;
            border-radius: 16px;
            padding: 6px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 157, 77, 0.2);
        }
        
        .search-box:focus-within {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(255, 102, 0, 0.15);
            border-color: rgba(255, 157, 77, 0.4);
        }
        
        .search-icon {
            padding: 0 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FF9D4D;
            font-size: 20px;
        }
        
        .search-box input {
            flex: 1;
            padding: 16px 0;
            border: none;
            outline: none;
            font-size: 17px;
            background: transparent;
            color: #2d3748;
        }
        
        .search-box input::placeholder {
            color: #a0aec0;
        }
        
        .search-box button {
            padding: 14px 24px;
            border-radius: 12px;
            border: none;
            background: linear-gradient(135deg, #FF9D4D 0%, #FF6600 100%);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 10px rgba(255, 157, 77, 0.3);
        }
        
        .search-box button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 157, 77, 0.4);
        }
        
        .search-box button:active {
            transform: translateY(0);
        }
        
        .suggestions-box {
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            right: 0;
            background: white;
            border-radius: 16px;
            padding: 16px 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .search-box:focus-within .suggestions-box {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .suggestion-item {
            padding: 12px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .suggestion-item:hover {
            background: #f8f9fa;
        }
        
        .suggestion-item i {
            color: #FF9D4D;
        }
        
        /* Grid Gambar */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            width: 100%;
            padding: 20px;
        }
        
        .result-item {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            background: white;
            animation: fadeIn 0.5s ease;
        }
        
        .result-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        
        .results-grid img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .result-item:hover img {
            transform: scale(1.05);
        }
        
        .result-info {
            padding: 16px;
        }
        
        .result-info h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: #2d3748;
        }
        
        .result-info p {
            color: #718096;
            font-size: 14px;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.92);
            justify-content: center;
            align-items: center;
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }
        
        .modal-content {
            position: relative;
            text-align: center;
            max-width: 90%;
            max-height: 90vh;
        }
        
        .modal-content img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 18px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            animation: zoomIn 0.35s ease;
        }
        
        .modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            font-size: 36px;
            color: white;
            cursor: pointer;
            font-weight: 300;
            transition: transform 0.2s ease;
        }
        
        .modal-close:hover {
            transform: rotate(90deg);
        }
        
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes zoomIn {
            from { transform: scale(0.85); }
            to { transform: scale(1); }
        }
        
        /* Responsiveness */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2rem;
            }
            
            .search-box {
                flex-direction: column;
                padding: 16px;
                border-radius: 20px;
            }
            
            .search-icon {
                display: none;
            }
            
            .search-box input {
                padding: 14px 0;
                margin-bottom: 12px;
                font-size: 16px;
            }
            
            .search-box button {
                width: 100%;
                justify-content: center;
                padding: 16px;
                border-radius: 12px;
            }
            
            .suggestions-box {
                top: calc(100% + 5px);
                border-radius: 12px;
            }
            
            .results-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 10px;
            }
            
            .results-grid img {
                height: 200px;
            }
        }
        
        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.8rem;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .search-container {
                margin-bottom: 30px;
            }
            
            .result-info h3 {
                font-size: 16px;
            }
            
            .modal-content img {
                border-radius: 12px;
            }
        }