/* Global Hero CSS */
.hero { position: relative; height: 60vh; min-height: 450px; width: 100%; overflow: hidden; border-radius: 0 !important; margin: 0 !important; }
.hero .img-hero { width: 100%; height: 100%; }
.hero .img-hero img { width: 100%; height: 100%; object-fit: cover !important; filter: brightness(35%) !important; transform: scale(1.05) !important; transition: transform 10s ease !important; }
.hero:hover .img-hero img { transform: scale(1) !important; }

/* Grid hero for collage */
.hero .img-hero-grid { display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; height: 100%; }
@media (max-width: 768px) {
  .hero .img-hero-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); }
}
.hero .img-hero-grid img { width: 100%; height: 100%; object-fit: cover !important; filter: brightness(45%) !important; transform: scale(1.05) !important; transition: transform 10s ease !important; }
.hero:hover .img-hero-grid img { transform: scale(1) !important; }

.hero .hero-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; z-index: 2; padding: 0 20px; background: linear-gradient(180deg, rgba(15,32,39,0.2) 0%, rgba(15,32,39,0.8) 100%) !important; transform: none !important; }
.hero .teks-hero { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; flex-grow: 1; color: white; padding: 0 20px; width: 100%; }
.hero .teks-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem) !important; font-weight: 700 !important; color: #ffffff !important; margin-bottom: 20px !important; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6) !important; animation: fadeInUp 1s ease !important; }
.hero .teks-hero p { font-size: 1.1rem !important; color: var(--secondary-text, #9ca3af) !important; animation: fadeInUp 1s ease 0.2s both !important; max-width: 600px !important; text-shadow: none !important; }
.hero .teks-hero p a { color: var(--text-color, #ffffff) !important; text-decoration: none !important; transition: var(--transition, all 0.4s) !important; }
.hero .teks-hero p a:hover { color: var(--accent-color, #a8dadc) !important; }
.hero .teks-hero p .teks-about { color: var(--primary-color, #e63946) !important; font-weight: 700 !important; padding: 0 !important; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
  .hero { height: 50vh !important; min-height: 400px !important; }
  .hero .teks-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important; }
}
