/* =========================
   MARIO PHOTO - STYLE.CSS (CLEAN UPDATED)
   ========================= */

/* ===== RESET ===== */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:"Poppins",sans-serif;
  line-height:1.6;
  color:#333;
  overflow-x:hidden;
  background:#fff;
}
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* =========================
   NAVBAR
   ========================= */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  z-index:1000;
  padding:1rem 0;
  transition:all .3s ease;
}
.navbar.scrolled{
  background:rgba(255,255,255,.98);
  box-shadow:0 2px 20px rgba(0,0,0,.1);
}
.nav-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.nav-logo h2{
  color:#e74c3c;
  font-weight:700;
  font-size:1.8rem;
}
.nav-menu{
  display:flex;
  list-style:none;
  gap:2rem;
}
.nav-link{
  text-decoration:none;
  color:#333;
  font-weight:500;
  transition:color .3s ease;
  position:relative;
}
.nav-link:hover{ color:#e74c3c; }
.nav-link::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  bottom:-5px;
  left:0;
  background:#e74c3c;
  transition:width .3s ease;
}
.nav-link:hover::after{ width:100%; }
.nav-link.active{ color:#e74c3c; }
.nav-link.active::after{ width:100%; }

/* Hamburger */
.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
}
.bar{
  width:25px;
  height:3px;
  background:#333;
  margin:3px 0;
  transition:.3s;
}

/* Responsive Navbar */
@media (max-width:768px){
  .hamburger{ display:flex; }

  .nav-menu{
    position:fixed;
    left:-100%;
    top:70px;
    flex-direction:column;
    background:#fff;
    width:100%;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 27px rgba(0,0,0,.05);
    padding:2rem 0;
    gap:1.2rem;
  }
  .nav-menu.active{ left:0; }

  .hamburger.active .bar:nth-child(2){ opacity:0; }
  .hamburger.active .bar:nth-child(1){ transform:translateY(8px) rotate(45deg); }
  .hamburger.active .bar:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

  .nav-logo h2{ font-size:1.5rem; }
}

/* =========================
   GLOBAL SECTION
   ========================= */
section{ padding:80px 0; }
.section-title{
  font-size:2.5rem;
  font-weight:700;
  text-align:center;
  margin-bottom:1rem;
  color:#333;
}
.section-subtitle{
  font-size:1.1rem;
  text-align:center;
  color:#666;
  margin-bottom:3rem;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}
@media (max-width:768px){
  .section-title{ font-size:2rem; }
}

/* =========================
   BUTTONS (GLOBAL - HERO/GALLERY/CTA)
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
  border:1px solid transparent;
  transition:transform .15s ease, opacity .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform:translateY(-1px); opacity:.95; }

.btn-primary{
  background:#ff4d30;
  color:#fff;
  border-color:rgba(0,0,0,.05);
}
.btn-outline{
  background:#fff;
  color:#111;
  border:1px solid #ddd;
}
.btn-outline:hover{
  background:#f5f5f5;
  border-color:#cfcfcf;
}

/* =========================
   HERO
   ========================= */
.hero{
  min-height:100svh;
  padding:110px 6% 60px;
  background-image:url("./images/logo.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  position:relative;
  display:flex;
  align-items:center;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 15% 30%, rgba(0,0,0,.55), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.20));
  z-index:1;
}
.hero-content{
  position:relative;
  z-index:2;
  width:min(1100px,92%);
  margin:0 auto;
  display:flex;
  justify-content:flex-start;
}
.hero-box{
  max-width:620px;
  padding:26px;
  border-radius:18px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
  box-shadow:0 18px 50px rgba(0,0,0,.25);
  animation:heroFadeUp .7s ease both;
}
@keyframes heroFadeUp{
  from{ transform:translateY(10px); opacity:0; }
  to{ transform:translateY(0); opacity:1; }
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.35);
  color:#fff;
  font-weight:600;
  font-size:.9rem;
  margin-bottom:14px;
}
.hero-title{
  color:#fff;
  font-weight:800;
  letter-spacing:.3px;
  font-size:clamp(1.9rem,5.6vw,3.6rem);
  line-height:1.12;
  text-shadow:0 6px 20px rgba(0,0,0,.35);
  margin-bottom:12px;
}
.hero-subtitle{
  color:rgba(255,255,255,.92);
  font-size:clamp(.98rem,2.6vw,1.1rem);
  max-width:55ch;
  margin-bottom:18px;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
@media (max-width:768px){
  .hero{
    min-height:75svh;
    padding:95px 6% 40px;
    background-position:center 60%;
  }
  .hero-content{ justify-content:center; text-align:center; }
  .hero-actions{ justify-content:center; }
  .hero-box{ padding:20px 18px; border-radius:16px; }
}

/* =========================
   MAP (if used)
   ========================= */
.map-wrapper{
  width:100%;
  aspect-ratio:16/9;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}
.map-wrapper iframe{ width:100%; height:100%; border:0; }
.map-link{
  display:inline-block;
  margin:22px auto 0;
  text-align:center;
  background:#ff4d30;
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
}
.map-link:hover{ opacity:.9; }

/* =========================
   PORTFOLIO / GALLERY GRID
   ========================= */
.portfolio{ background:#f8f9fa; }
.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:2rem;
}
.portfolio-item{
  position:relative;
  border-radius:15px;
  overflow:hidden;
  cursor:pointer;
  transition:transform .3s ease;
  text-decoration:none;
  color:inherit;
}
.portfolio-item:hover{ transform:translateY(-10px); }
.portfolio-item img{
  width:100%;
  height:300px;
  object-fit:cover;
  transition:transform .3s ease;
}
.portfolio-item:hover img{ transform:scale(1.1); }
.portfolio-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:linear-gradient(transparent,rgba(0,0,0,.8));
  color:#fff;
  padding:2rem;
  transform:translateY(100%);
  transition:transform .3s ease;
}
.portfolio-item:hover .portfolio-overlay{ transform:translateY(0); }
.portfolio-overlay h3{ font-size:1.3rem; margin-bottom:.5rem; }

.portfolio-item.hidden{ display:none !important; }

/* category-card tweaks */
.category-card .portfolio-overlay{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:18px;
}
.category-card .portfolio-overlay h3{
  margin:0;
  font-size:18px;
  font-weight:600;
}
.category-card .portfolio-overlay p{
  margin:6px 0 0;
  font-size:13px;
  opacity:.9;
}
.card-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  font-size:12px;
  font-weight:700;
}

/* =========================
   GALLERY HERO (ADD-ON)
   ========================= */
.gallery-hero{
  padding:120px 0 40px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff,#f5f7fb);
}
.gallery-hero-inner{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:900px;
  margin:0 auto;
}
.gallery-hero-bg{
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  filter:blur(90px);
  opacity:.35;
  z-index:1;
}
.gallery-hero-bg.blur-1{ left:-180px; top:80px; background:radial-gradient(circle,#ff4d30,transparent 60%); }
.gallery-hero-bg.blur-2{ right:-200px; top:40px; background:radial-gradient(circle,#1a73e8,transparent 60%); }

.gallery-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  border:1px solid #eee;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  font-weight:700;
  color:#333;
  margin-bottom:16px;
}
.gallery-title{
  font-size:clamp(34px,4vw,52px);
  line-height:1.1;
  margin:0 0 10px;
  color:#222;
}
.gallery-subtitle{
  margin:0 auto 18px;
  max-width:60ch;
  color:#666;
  font-size:1.05rem;
}
.gallery-pills{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}
.gallery-pills .pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #eee;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
  font-weight:600;
  color:#333;
  font-size:13px;
}
.gallery-cta{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:10px;
}
.gallery-hide{ display:none; }

@media (max-width:768px){
  .gallery-hero{ padding:105px 0 30px; }
}

/* =========================
   CONTACT (CLEAN + UPGRADE)
   ========================= */
.contact{ padding-top:120px; position:relative; overflow:hidden; }
.contact .container{ position:relative; z-index:1; }

.contact-bg-blur{
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  filter:blur(80px);
  opacity:.35;
  z-index:0;
}
.contact-bg-blur.blur-1{
  top:120px;
  left:-120px;
  background:radial-gradient(circle at 30% 30%, #ff4d30, transparent 60%);
}
.contact-bg-blur.blur-2{
  bottom:80px;
  right:-140px;
  background:radial-gradient(circle at 30% 30%, #1a73e8, transparent 60%);
}

.contact-center{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.contact-center .section-title,
.contact-center .section-subtitle{
  width:100%;
  text-align:left;
  margin-left:0;
  margin-right:0;
}

/* layout grid desktop */
.contact-list{
  width:100%;
  margin-top:30px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  align-items:start;
}

.contact-item.no-icon{
  width:100%;
  padding:18px 20px;
  border-radius:12px;
  background:rgba(255,255,255,.92);
  border:1px solid #eee;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
  text-align:left;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.contact-item.no-icon:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 34px rgba(0,0,0,.10);
  border-color:#e6e6e6;
}

.contact-item.no-icon h3{
  font-size:1.2rem;
  margin-bottom:8px;
  font-weight:600;
  color:#333;
  display:flex;
  align-items:center;
  gap:10px;
}
.contact-item.no-icon h3::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:#e74c3c;
  box-shadow:0 0 0 6px rgba(231,76,60,.12);
}

.contact-item.no-icon p,
.contact-item.no-icon a{
  color:#555;
  font-size:1rem;
  line-height:1.6;
}
.contact-item.no-icon a{ text-decoration:none; color:#1c02b4; }
.contact-item.no-icon a:hover{ text-decoration:underline; }

/* highlight jam operasional (card terakhir) */
.contact-item.no-icon:last-child{
  background:linear-gradient(180deg,#ffffff,#f6f9ff);
  border-color:#dbe9ff;
}

/* Tombol Contact */
.contact-btn{
  margin-top:12px;
  width:100%;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  border:1px solid #e9e9e9;
  background:#fafafa;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.contact-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(0,0,0,.10);
  border-color:#dcdcdc;
}
.contact-btn i{
  width:42px;
  height:42px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-size:20px;
  background:#f3f4f6;
  color:#111;
}
.contact-btn .contact-sub{
  margin-left:auto;
  font-weight:600;
  font-size:13px;
  color:#666;
}

/* WhatsApp */
.contact-btn.wa-link{
  background:#ecfdf3;
  border-color:#bff0d2;
  color:#0f5132;
}
.contact-btn.wa-link i{ background:#25D366; color:#fff; }

/* Email (biru) */
.contact-btn.gmail-link{
  background:#eef5ff;
  border-color:#cfe3ff;
  color:#0b3a75;
}
.contact-btn.gmail-link i{ background:#1a73e8; color:#fff; }

/* responsive contact */
@media (max-width:900px){
  .contact-list{ grid-template-columns:1fr; }
}
@media (max-width:768px){
  .contact{ padding-top:110px; }
}
@media (max-width:480px){
  .contact-btn{
    flex-direction:column;
    align-items:flex-start;
  }
  .contact-btn .contact-sub{ margin-left:0; }
}

/* =========================
   TEAM (UPDATED + BLUR BACKGROUND)
   ========================= */
.team{
  background:#fff;
  padding:80px 0;
  position:relative;
  overflow:hidden;
}

/* blur background seperti contact */
.team::before,
.team::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  filter:blur(80px);
  opacity:.30;
  z-index:0;
}

/* blur kiri atas */
.team::before{
  top:120px;
  left:-140px;
  background:radial-gradient(circle, rgba(255,77,48,0.9), transparent 60%);
}

/* blur kanan bawah */
.team::after{
  bottom:80px;
  right:-160px;
  background:radial-gradient(circle, rgba(26,115,232,0.9), transparent 60%);
}

/* konten tetap di atas blur */
.team .container{
  position:relative;
  z-index:1;
}

.team-profiles{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  margin-top:40px;
}
.team-profile-card{
  display:grid;
  grid-template-columns:320px 1fr;
  background:rgba(255,255,255,.92);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
  transition:transform .3s ease, box-shadow .3s ease;
}
.team-profile-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 35px rgba(0,0,0,.12);
}
.team-profile-photo{
  width:100%;
  min-height:420px;
  overflow:hidden;
}
.team-profile-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
  transition:transform .35s ease;
}
.team-profile-card:hover .team-profile-photo img{
  transform:scale(1.06);
}
.team-profile-body{
  padding:32px 28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.team-profile-name{
  font-size:1.6rem;
  font-weight:700;
  margin-bottom:14px;
  color:#111;
}
.team-profile-desc{
  font-size:1rem;
  line-height:1.8;
  color:#555;
  margin-bottom:22px;
}
.team-profile-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  list-style:none;
  padding:0;
}
.team-profile-tags li{
  background:#f3f4f6;
  color:#333;
  font-size:.85rem;
  padding:7px 14px;
  border-radius:999px;
  font-weight:600;
  border:1px solid rgba(0,0,0,.06);
}

@media (max-width:768px){
  .team-profile-card{ grid-template-columns:1fr; }
  .team-profile-photo{ min-height:360px; }
  .team-profile-body{ padding:24px 22px; }
}

/* =========================
   SERVICES (LIGHT THEME)
   ========================= */
.services-hero{
  padding:110px 0 30px;
  background:linear-gradient(180deg,#ffffff,#f2f4f8);
  color:#222;
}
.services-hero h1{
  font-size:clamp(30px,4vw,44px);
  margin:12px 0 6px;
  color:#111;
}
.services-hero p{
  margin:0;
  color:#555;
  max-width:60ch;
}
.badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 14px;
  border:1px solid #e0e0e0;
  background:#fff;
  border-radius:999px;
  font-size:14px;
  color:#555;
}

.services{
  background:#f8f9fb;
  padding:30px 0 70px;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.service-card.clickable{
  text-align:left;
  cursor:pointer;
  border:1px solid #e6e6e6;
  background:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
  position:relative;
}
.service-card.clickable:hover{
  transform:translateY(-3px);
  background:#fffdf8;
  border-color:#f0c36a;
}
.service-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:#fff4dc;
  border:1px solid #f0c36a;
  margin-bottom:10px;
  color:#c4912f;
}
.service-card h3{ margin:0 0 6px; color:#111; }
.service-hint{ margin:0; color:#666; font-size:13px; }
.service-chip{
  position:absolute;
  right:14px;
  top:14px;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid #f0c36a;
  background:#fff4dc;
  color:#b8860b;
}

@media (max-width:980px){
  .services-grid{ grid-template-columns:1fr; }
  .services-hero{ padding-top:95px; }
}

/* =========================
   MODAL (SCOPED to .modal ONLY)
   ========================= */
.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:9999;
}
.modal-overlay.open{ display:flex; }

.modal{
  width:min(720px,96vw);
  border-radius:22px;
  border:1px solid #e6e6e6;
  background:#fff;
  box-shadow:0 18px 55px rgba(0,0,0,.35);
  color:#222;
  position:relative;
  overflow:hidden;
}
.modal-close{
  position:absolute;
  top:12px;
  right:12px;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid #ddd;
  background:#fff;
  color:#333;
  cursor:pointer;
}
.modal-head{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:14px;
  padding:18px 18px 10px;
  border-bottom:1px solid #eee;
}
.modal-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:#fff4dc;
  border:1px solid #f0c36a;
  color:#c4912f;
}
.modal-head h2{ margin:0 0 4px; font-size:20px; color:#111; }
.muted{ color:#666; font-size:13px; margin:0; }

.modal-body{ padding:16px 18px 18px; }
.modal-price{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:16px;
  border:1px solid #f0c36a;
  background:#fffdf6;
  margin-bottom:14px;
}
.modal-price span{ color:#666; font-size:13px; }
.modal-price strong{ font-size:20px; color:#c4912f; }

.modal-section-title{
  margin-top:18px;
  margin-bottom:8px;
  font-size:16px;
  font-weight:600;
}
.modal-list{
  margin:0 0 6px;
  padding-left:18px;
  line-height:1.7;
  display:grid;
  gap:8px;
  color:#333;
}
.modal-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

/* Modal buttons - scoped */
.modal .btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid #ddd;
  text-decoration:none;
  font-weight:700;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.modal .btn:hover{
  transform:translateY(-2px);
  background:#f5f5f5;
  border-color:#cfcfcf;
}
.modal .btn.primary{
  background:linear-gradient(135deg,#f6c453,#e9a93a);
  color:#111;
  border-color:#e9a93a;
}
.modal .btn.primary:hover{
  background:linear-gradient(135deg,#ffd878,#f0b84d);
}
.modal .btn.ghost{
  background:#fff;
  color:#333;
  border:1px solid #ddd;
}

.modal-note{ margin:14px 0 0; color:#666; font-size:12px; }

/* =========================
   CATEGORY PAGE (BACK BUTTON)
   ========================= */
.category-header{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:18px;
}
.btn-back{
  width:fit-content;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:10px;
  background:#111;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}
.btn-back:hover{ opacity:.9; }

/* =========================
   FOOTER
   ========================= */
.footer{
  background:#111;
  color:#eee;
  padding:3rem 0 1rem;
}
.footer-content{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;
  margin-bottom:2rem;
}
.footer-section h3,
.footer-section h4{
  margin-bottom:1rem;
  color:#e74c3c;
}
.footer-section ul{ list-style:none; }
.footer-section ul li{ margin-bottom:.5rem; }
.footer-section ul li a{
  color:#bdc3c7;
  text-decoration:none;
  transition:color .3s ease;
}
.footer-section ul li a:hover{ color:#fff; }
.footer-bottom{
  border-top:1px solid #222;
  padding-top:1rem;
  text-align:center;
  color:#bdc3c7;
}

/* =========================
   CONTACT UPGRADE (ADD-ON)
   ========================= */

/* background dekorasi */
.contact{
  position: relative;
  overflow: hidden;
}

.contact-bg-blur{
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  z-index: 0;
}

.contact-bg-blur.blur-1{
  top: 120px;
  left: -120px;
  background: radial-gradient(circle at 30% 30%, #ff4d30, transparent 60%);
}

.contact-bg-blur.blur-2{
  bottom: 80px;
  right: -140px;
  background: radial-gradient(circle at 30% 30%, #1a73e8, transparent 60%);
}

/* pastikan konten di atas dekorasi */
.contact .container{
  position: relative;
  z-index: 1;
}

/* infobar */
.contact-infobar{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.info-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid #eee;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  color: #333;
  font-weight: 600;
  font-size: 13px;
}

/* grid layout kontak */
.contact-list{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

/* agar card lebih “premium” */
.contact-item.no-icon{
  border: 1px solid #eee;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.contact-item.no-icon:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  border-color: #e6e6e6;
}

/* highlight khusus untuk panel jam operasional (tanpa ubah teks) */
.contact-item.no-icon:last-child{
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  border-color: #dbe9ff;
}

/* tombol kontak kamu biar makin halus */
.contact-btn{
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

/* Responsive: jadi 1 kolom di mobile */
@media (max-width: 900px){
  .contact-list{
    grid-template-columns: 1fr;
  }
}
