/* Background Styles */ .islands__bg { background-size: cover; background-position: center; } .bg__overlay { background: rgba(0, 0, 0, 0.5); } /* Enhanced Card Hover Effect */ .review-card { transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); transform-origin: center bottom; will-change: transform, box-shadow; position: relative; } /* Optional: Add a lift effect on the border */ .review-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #ef4444, #3b82f6, #10b981); border-radius: 4px 4px 0 0; transform: scaleX(0); transition: transform 0.3s ease; } .review-card:hover::before { transform: scaleX(1); } /* Where To Go Section - Desktop */ @media (min-width: 1100px) { .where-to-go__content { overflow-x: visible; white-space: normal; } .where-to-go__content > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; width: 100%; } .where-to-go__card { display: block; width: 100% !important; } } /* Untuk memastikan form di tablet cukup besar */ @media (min-width: 768px) and (max-width: 1023px) { .lg\\:hidden .bg-white { max-width: 600px; margin: 0 auto; } } #viewAllBtn svg { transition: transform 0.3s ease; }