@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:wght@100..900&display=swap');

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Google Sans Flex', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    body {
      background-color: #121212;
      color: #ffffff;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* --- NAVBAR --- */
    header {
      background-color: #121212;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 5%;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid #222;
      box-shadow: 0px 10px 20px -5px rgba(229, 169, 59, 0.5);
      border-bottom-left-radius: 50px;
      border-bottom-right-radius: 50px;
      overflow: visible !important;
    }

    .logo img {
      display: flex;
      max-width: 100px;
      max-height: 100px;
    }

    .search-bar {
      display: flex; 
     align-items: center; 
     background-color: #e5a93b; 
     border-radius: 50px; 
     padding: 4px 5px 4px 18px; 
     width: 320px;
     max-width: 100%;
     box-sizing: border-box;
    }

    .search-bar input {
     border: none;
     background: transparent;
     outline: none;
     flex: 1;
     width: 100%;
     color: #121212;
     font-size: 0.85rem;
     font-weight: 500;
    }

    .search-bar input::placeholder {
      color: #333;
      font-size: 0.8rem;
    }

    .search-btn {
     background-color: #ffffff; 
     border: none;
     width: 32px;
     height: 32px;
     border-radius: 50%; 
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     flex-shrink: 0; 
    }

    .search-btn:hover {
     transform: scale(1.08);
     background-color: #f0f0f0;
    }

    .menu-icon {
      width: 30px;
      height: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
    }

    .menu-icon span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: #e5a93b;
      border-radius: 2px;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      right: 5%;
      background-color: #121212;
      border: 1px solid #333;
      border-radius: 12px;
      padding: 15px 0;
      width: 200px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.5);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.5s ease;
      z-index: 1000;
    }

    .nav-menu.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(10px);
      transition: all 0.5s ease;
    }

    .nav-menu ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-menu li a {
      display: block;
      padding: 10px 20px;
      color: #f2f2f2;
      text-decoration: none;
      font-size: 0.95rem;
      transition: background 0.2s, color 0.2s;
    }

    .nav-menu li a:hover {
      background-color: rgba(229, 169, 59, 0.15);
      color: #e5a93b
    }

    /* --- HERO TOP (LIGHT SECTION) --- */
    .hero-light {
      background-image: linear-gradient(90deg, rgba(18, 18, 18, 0.98) 0%, rgba(18, 18, 18, 0.90) 45%, rgba(18, 18, 18, 0.40) 70%, rgba(18, 18, 18, 0.0) 100%),url("Contoh Gambar/cover hero 1.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: #ffffff;
      padding: 60px 8%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      min-height: 730px;
      margin-top: -10%;
      position: relative;
      box-sizing: border-box;
    }

    .hero-light h2 {
      color: #f2f2f2;
      font-size: 4rem;
      font-weight: 800;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .hero-light p {
      font-size: 1.5rem;
      color: #f2f2f2;
      max-width: 500px;
      margin-bottom: 20px;
      margin-top: -1.5%;
    }

    .btn-gold {
      background-color: #e5a93b;
      color: #000;
      padding: 8px 20px;
      border-radius: 4px;
      font-weight: bold;
      font-size: 0.85rem;
      display: inline-block;
      transition: 0.3s;
    }

    .btn-gold:hover {
      background-color: #c9922c;
      padding: 10px 22px;
      color: #f2f2f2;
    }

    /* --- HERO SECTION 2 (DARK) --- */
    .hero-dark {
      background-image: linear-gradient(270deg, rgba(18, 18, 18, 0.98) 0%, rgba(18, 18, 18, 0.90) 45%, rgba(18, 18, 18, 0.40) 70%, rgba(18, 18, 18, 0.0) 100%),url("Contoh Gambar/cover hero 2.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 80px 8%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      position: relative;
      min-height: 600px;
    }

    .hero-dark-content {
      text-align: right;
      max-width: 450px;
    }

    .hero-dark-content h1 {
      font-size: 2.5rem;
      line-height: 1.1;
      margin-bottom: 20px;
      font-weight: 800;
    }

    .hero-dark-content p {
      font-size: 1rem;
      color: #f0f0f0;
      max-width: 350px;
      margin-bottom: 20px;
      margin-top: -0.5%;
    }

    /* --- PORTOFOLI KAMI --- */
    .portfolio-section {
      background-color: #121212;
      padding: 50px 8%;
      text-align: center;
    }

    .section-title {
      font-size: 4rem;
      font-weight: bold;
      margin-bottom: 8px;
    }

    .section-subtitle {
      font-size: 1rem;
      color: #aaa;
      margin-bottom: 30px;
      margin-top: -2%;
    }

    /* Grid layout untuk 3 foto portofolio */
    .portfolio-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr 1fr;
      gap: 15px;
      margin-bottom: 30px;
    }

    .img-box {
      background-color: #e0e0e0;
      border-radius: 4px;
      min-height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

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

    /* --- QUOTE BANNER SECTION --- */
    .quote-banner-section {
  width: 100%;
  background-color: #e5a93b; 
  padding: 50px 20px;        
  margin: 40px 0;            
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.quote-container {
  max-width: 900px;         
  text-align: center;
}

.quote-text {
  color: #ffffff;           
  font-size: 1.25rem;       
  font-weight: 700;         
  line-height: 1.6;         
  margin: 0 0 20px 0;
  font-style: normal;
}

.quote-author {
  color: #ffffff;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;         
  letter-spacing: 2px;      
  margin: 0;
}

/* --- RESPONSIVE MOBILE (LAYAR HP) --- */
@media (max-width: 768px) {
  .quote-banner-section {
    padding: 35px 16px;     
  }

  .quote-text {
    font-size: 1.05rem;     
    line-height: 1.5;
  }

  .quote-author {
    font-size: 0.95rem;
  }
}

    /* --- REVIEW KALIGRAFI TERBARU --- */
    .review-section {
      background-color: #121212;
      padding: 40px 8% 60px;
      text-align: center;
      margin-bottom: 100px;
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 30px;
    }

    .review-card {
      background-color: #e0e0e0;
      border-radius: 6px;
      height: 200px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      transition: 0.3s;
    }

    .review-card:hover{
        height: 220px;
        width: auto;
        background: linear-gradient(0deg, rgba(230, 192, 25, 0.897) 0%, rgba(255, 223, 82, 0.253) 100%);
    }

    .review-card img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
    }

    .review-overlay {
      position: relative;
      z-index: 2;
      background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
      width: 100%;
      padding: 15px 10px;
      text-align: center;
      color: #fff;
      cursor: default;
    }

    .review-overlay h4 {
      font-size: 1.2rem;
      margin-bottom: 2px;
    }

    .review-overlay p {
      font-size: 0.8rem;
      color: #ccc;
    }

    .review-overlay li {
      font-size: 0.8rem;
      color: #c9922c;
      cursor: pointer;
      transition: 0.3s;
    }

    .review-overlay li :hover {
      color: #f2f2f2;
    }

    /* --- KEMBALI BUTTON BOTTOM --- */
    .back--button {
      display: flex;
      align-items: flex-start;
      justify-content: left;
      margin-left: 110px;
      margin-top: 60px;
      margin-bottom: 50px;
    }
    
    .back-button {
      font-size: 1rem;
      color: #e5a93b;
      transition: all 0.3s ease;
      text-decoration: underline;
    }

    .back-button:hover {
      color: #f2f2f2;
    }

    /* --- KEMBALI BUTTON TOP --- */
    .back--button-toppage {
      display: flex;
      align-items: flex-start;
      justify-content: right;
      margin-right: 110px;
      margin-top: 60px;
      margin-bottom: 30px;
    }
    
    .back-button-toppage {
      font-size: 1rem;
      color: #e5a93b;
      transition: all 0.3s ease;
      text-decoration: underline;
    }

    .back-button-toppage:hover {
      color: #f2f2f2;
    }

    /* --- FOOTER --- */
    footer {
      background-color: #e5a93b;
      color: #000;
      padding: 30px 8%;
      display: grid;
      grid-template-columns: 2fr 1fr 2fr 1.5fr;
      gap: 70px;
      padding-bottom: 150px;
      font-size: 1rem;
      border-top-left-radius: 50px;
      border-top-right-radius: 50px;
    }

    footer .logo-footer img {
      display: flex;
      max-width: 150px;
      max-height: 150px;
      margin-bottom: 10px;
    }

    footer h5 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      font-weight: bold;
    }

    footer ul {
      list-style: none;
    }

    footer ul li {
      margin-bottom: 5px;
      transition: 0.3s;
    }

    footer ul li:hover {
        font-size: 1.1rem;
        color: #f0f0f0;
    }

    .footer-search {
     display: flex;
     align-items: center;
     background-color: #1e1e1e; 
     border-radius: 50px;
     padding: 4px 6px 4px 16px;
     margin-top: 15px;
     width: 100%;
     max-width: 280px;
     box-sizing: border-box;
     align-self: flex-start;
     height: 40px;
    }

    .footer-search input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    color: #ffffff;
    font-size: 0.85rem;
    }

    .footer-search input::placeholder {
    color: #aaa;
    font-size: 0.8rem;
    }

    .footer-search button {
    background-color: #e5a93b;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    }

    .footer-search button:hover {
    transform: scale(1.05);
    }

    html {
     scroll-behavior: smooth;
    }

    /* --- HASIL PENCARIAN --- */
    @media (max-width: 768px) {
      .Card-Produk-Body, 
  #search-results-container {
    display: grid !important;
    grid-template-columns: 1fr !important; 
    gap: 20px !important;
    padding: 10px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .Card-Produk-Body > div,
  .Card-Produk-Body .card-item,
  .Card-Produk-Body a {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
  }

  .Card-Produk-Body img {
    width: 100% !important;
    height: 220px !important; 
    object-fit: cover !important;
    border-radius: 12px !important;
  }

  .Card-Produk-Body h3,
  .Card-Produk-Body p,
  .Card-Produk-Body span {
    word-wrap: break-word !important;
    white-space: normal !important;
    font-size: 1rem !important;
  }
}

    /* --- FLOATING WHATSAPP BUTTON --- */
.wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #f2f2f2;
  color: rgba(37, 211, 102);
  border-radius: 50px;
  padding: 10px 18px 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
}

.wa-float .wa-icon {
  width: 24px;
  height: 24px;
}

/* Efek Hover & Animasi Halus */
.wa-float:hover {
  background-color: #f2f2f2;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: rgba(37, 211, 102);
}

/* Responsif Mobile: Agar tidak menutupi layar terlalu banyak */
@media (max-width: 576px) {
  .wa-float span {
    display: none;
  }
  .wa-float {
    padding: 12px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
}
    
    /*--PORTOFOLIO PAGE--*/
    .title-portofolio {
        background-color: #121212;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-top: 10%;
        margin-bottom: 20px;
    }

    .title-portofolio h1 {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .portfolio-page {
      padding: 60px 8%;
      background-color: #121212;
      color: #ffffff;
    }

    .portfolio-card {
      display: grid;
      grid-template-columns: 1fr 1.2fr 1fr; /* 3 Kolom: Teks, Grid Foto, Video */
      gap: 25px;
      align-items: center;
      background-color: #1a1a1a;
      border: 1px solid #2a2a2a;
      border-radius: 20px;
      padding: 30px;
      margin-bottom: 50px;
    }

    .porto-info h2 {
  color: #e5a93b;
  font-size: 1.8rem;
  margin-bottom: 15px;
    }

    .porto-info p {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
    }

    .porto-info a {
      font-size: 0.85rem;
      color: #e5a93b;
      transition: all 0.3s;
    }

    .porto-info a:hover {
      color: #f2f2f2;
    }

    .porto-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 170px 160px 160px;
  gap: 12px;
  height: 515px;
    }

.porto-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
    }

.porto-photo-grid img:hover {
  transform: scale(1.03);
    }

    .porto-photo-grid img.img-wide {
  grid-column: 1 / span 2;
  grid-row: 1;
    }

    .porto-photo-grid img.img-tall {
  grid-row: 1;
  grid-row: 2 / span 2;
    }

    .porto-video {
  width: 100%;
  height: 515px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000;
}

.porto-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- RESPONDIF UNTUK HP / TABLET --- */
@media (max-width: 992px) {
  .portfolio-card, 
  .portfolio-card.reverse {
    grid-template-columns: 1fr; 
  }
}

    /*--OUR PRODUCT PAGE--*/
    .Produk-Kami {
        background-color: #121212;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin-top: 10%;
        margin-bottom: auto;
    }

    .Produk-Kami h1 {
        font-size: 40px;
        color: #f2f2f2;
        margin-bottom: 50px;
    }

    .Card-Produk-Body {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      max-width: 1200px;
      margin-top: 30px;
      margin: auto;
      align-items: flex-start;
      margin-bottom: 50px;
    }

    .card-produk {
      background-color: #f2f2f2;
      border-radius: 6px;
      width: calc(33.333% - 16px);
      max-width: 300px;
      height: 300px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      transition: 0.3s;
    }

    .card-produk:hover {
      background: linear-gradient(0deg, rgba(230, 192, 25, 0.897) 0%, rgba(255, 223, 82, 0.253) 100%);
    }

    .card-produk img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: 2s ease;
    }

    .card-produk::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(229, 170, 59, 0.274) 0%, rgba(180, 121, 20, 0.226) 100%);
      opacity: 0;
      transition: opacity 1.5s ease;
      pointer-events: none;
      z-index: 1;
    }

    .card-produk:hover::after {
      opacity: 1;
    }
    
    .card-produk img:hover {
      
      transform: scale(1.05);
    }


    .card-produk-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px;
      background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-align: center;
    }

    .card-produk-overlay h2 {
      font-size: 1.3rem;
      color: #f2f2f2;
      margin: 0 0 6px 0;
      font-weight: 600;
    }

    .card-produk-overlay li {
      font-size: 0.8rem;
      color: #c9922c;
      transition: 0.3s ease;
    }

    .card-produk-overlay li :hover {
      color: #f2f2f2;
    }


    /* --- KALKULATOR HARGA --- */
.calculator-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  background-color: #121212;
}

.calc-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 35px;
  max-width: 550px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.calc-card h2 {
  color: #e5a93b;
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.calc-subtitle {
  color: #aaa;
  font-size: 0.88rem;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.label-with-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.form-group label {
  color: #ddd;
  font-size: 0.92rem;
  font-weight: 500;
}

.info-link {
  color: #e5a93b;
  font-size: 0.8rem;
  text-decoration: none;
}

.info-link:hover {
  text-decoration: underline;
}

/* Style Select & Slider */
.form-group select, 
.form-group input[type="range"] {
  width: 100%;
  padding: 12px;
  background: #252525;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

.form-group select:focus {
  border-color: #e5a93b;
}

.highlight {
  color: #e5a93b;
  font-weight: bold;
}

/* Hasil Harga Box */
.price-result-box {
  background: #222;
  border-left: 4px solid #e5a93b;
  padding: 15px 20px;
  border-radius: 8px;
  margin: 25px 0 20px 0;
}

.price-result-box span {
  color: #aaa;
  font-size: 0.85rem;
}

.price-result-box h3 {
  color: #e5a93b;
  font-size: 1.8rem;
  margin: 5px 0;
}

.price-result-box small {
  color: #777;
  font-size: 0.75rem;
}

/* Tombol WA */
.btn-wa-calc {
  width: 100%;
  padding: 14px;
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, background-color 0.2s;
}

.btn-wa-calc:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
}

    /* --- REVIEW KALIGRAFI TERBARU --- */
    .review {
      display: flex;
      width: 100%;
      height: 200px;
      align-items: flex-start;
      justify-content: center;
      position: relative;
      margin-bottom: -120px;
    }
    
    .review h1 {
      font-weight: bold;
      font-size: 50px;
      padding: 5px 5px 5px;
      margin-bottom: 2px;
    }

    .sub-review {
      display: flex;
      width: 100%;
      height: 100px;
      align-items: flex-start;
      justify-content: center;
      position: relative;
      margin-bottom: 20px;
    }
    
    .sub-review p {
      position: relative;
      font-size: 0.85rem;

    }

    .grid-review-kaligrafi {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 250px 250px;
      gap: 15px;
      align-items: center;
      padding: 10px;
    }

    .grid-review-kaligrafi img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    .grid-review-kaligrafi .img-tall-review-kiri {
      grid-column: 1;
      grid-row: 1 / span 2;
    }

    .grid-review-kaligrafi .img-tall-review-kanan {
      grid-column: 3;
      grid-row: 1 / span 2;
    }

    .review-text {
      display: block !important;
      margin: 30px auto;
      max-width: 1000px;
      font-size: 1rem;
      line-height: 1.6;
      padding: 20px 0;
      box-sizing: border-box;
    }

    .review-text p {
      margin-bottom: 18px;
      text-align: justify;
    }

    .review-text p:last-child {
      margin-bottom: 0;
    }

    @media (max-width: 768px) {
      .review-text {
        padding: 20px 16px;
        margin-top: 10px;
        width: 100%;
        box-sizing: border-box !important;
      }

      .review-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 16px;
        text-align: left !important;
        word-break: break-word;
      }
    }

    /* --- ABOUT US --- */
    .title-aboutus {
      display: flex;
      width: 100%;
      height: 400px;
      align-items: flex-start;
      justify-content: center;
      position: relative;
      margin-top: 10%;
      margin-bottom: -280px;
    }

    .title-aboutus h1 {
      font-weight: 900;
      font-size: 50px;
    }

    .about-us-body {
      display: block !important;
      margin: 30px auto;
      max-width: 1000px;
      font-size: 0.85rem;
      line-height: 1.6;
      padding: 20px 0;
      box-sizing: border-box;
    }

    .about-us-body h2 {
      margin-bottom: 18px;
      text-align: justify;
      font-weight: normal;
    }

@media (max-width: 768px) {
      .about-us-body {
        padding: 20px 16px;
        margin-top: 10px;
        width: 100%;
        box-sizing: border-box !important;
      }

      .about-us-body h2 {
        font-weight: normal;
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 16px;
        text-align: left !important;
        word-break: break-word;
      }
    }

    /* --- KONTAK --- */
    .kontak-section {
      max-width: 900px;
      margin: 50px auto;
      padding: 0 20px;
      text-align: center;
    }

    .kontak-section h1 {
      color: #ffffff;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 35px;
    }

    .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
    }

    .contact-card {
  background-color: #e5a93b;     
  border-radius: 20px;           
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;  
  gap: 25px;                     
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

/* Ikon / Logo */
.card-icon {
  font-size: 1.8rem;
  color: #f2f2f2;                
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}

.card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Teks Platform (Instagram, WhatsApp, dll) */
.card-text {
  color: #f2f2f2;                
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-card:hover {
  transform: translateY(-5px);    
  background-color: #f3b749;     
  box-shadow: 0 10px 20px rgba(229, 169, 59, 0.3); 
}

@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr; 
    gap: 15px;
  }

  .contact-card {
    padding: 16px 20px;
    border-radius: 14px;
    gap: 15px;
  }

  .card-text {
    font-size: 1.2rem;
  }
}

    /* --- RESPONSIVE MOBILE --- */
    @media (max-width: 768px) {
      .portfolio-grid, .review-grid, .card-produk, .Card-Produk-Body {
        grid-template-columns: 1fr;
      }

      footer {
        grid-template-columns: 1fr;
      }

      .search-bar {
        display: none;
      }
    }