   /* ===== VARIABLES & RESET ===== */
    :root {
      --bg: #ffffff;
      --text: #2d2d2d;
      --primary: #2A9D8F;        /* teal */
      --primary-dark: #21867A;
      --secondary: #264653;       /* biru tua */
      --light: #f8f9fa;
      --dark: #1e2b37;
      --card-bg: #ffffff;
      --shadow: 0 10px 30px rgba(0,0,0,0.05);
      --nav-bg: rgba(255, 255, 255, 0.95);
      --footer-bg: #1e2b37;
      --footer-text: #e9ecef;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: var(--nav-bg);
      backdrop-filter: blur(10px);
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--secondary);
      text-decoration: none;
      display: flex;
      align-items: center;
    }
    .logo-img {
      height: 40px;
      width: auto;
      margin-right: 8px;
      vertical-align: middle;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
      position: relative;
      padding-bottom: 5px;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--primary);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .social-icons-nav {
      display: none;
    }

    /* ===== HERO SECTION ===== */
    .hero {
      padding: 6rem 5% 3rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
      min-height: 90vh;
    }

    .hero-text {
      padding-right: 2rem;
    }

    .hero-text h1 {
      font-size: 3rem;
      color: var(--secondary);
      margin-bottom: 1rem;
    }

    .hero-text p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
    }

    .btn {
      padding: 0.8rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
    }

    .btn-primary {
      background: transparent;
      color: rgb(0, 0, 0);
      border: 2px solid var(--secondary)
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--secondary);
      color: var(--secondary);
    }

    .btn-outline:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
    }

    .hero-images {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 150px;
      gap: 1rem;
    }

    .hero-img {
      overflow: hidden;
      border-radius: 15px;
      box-shadow: var(--bg);
    }

    .hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .hero-img:hover img {
      transform: scale(1.1);
    }

    .hero-img:nth-child(4) {
      grid-row: span 2;
    }

    /* Hero Features */
    .hero-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      background: rgba(42, 157, 143, 0.05);
      padding: 2rem;
      border-radius: 30px;
      backdrop-filter: blur(5px);
      margin-top: 2rem;
    }

    .feature-item {
      text-align: center;
      padding: 1.2rem;
      background: white;
      border-radius: 20px;
      box-shadow: var(--shadow);
      transition: transform 0.3s;
    }

    .feature-item:hover {
      transform: translateY(-5px);
    }

    .feature-item i {
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .feature-item h4 {
      font-size: 1.1rem;
      margin-bottom: 0.2rem;
      color: var(--secondary);
    }

    .feature-item p {
      font-size: 0.85rem;
      color: #666;
    }

    /* ===== FLOATING WHATSAPP ===== */
    .wa-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #25d366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      text-align: center;
      font-size: 30px;
      line-height: 60px;
      box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
      z-index: 100;
      transition: transform 0.3s;
    }

    .wa-float:hover {
      transform: scale(1.1);
    }

    /* ===== SECTION STYLES (umum) ===== */
    section {
      padding: 5rem 5%;
    }

    .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: #000000;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 3px;
      background: var(--secondary);
      margin: 1rem auto;
    }

    /* ===== SEJARAH SECTION ===== */
    #sejarah {
      background: linear-gradient(135deg, #fff9f7 0%, #ffffff 100%);
    }

    #sejarah .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .sejarah-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-bottom: 3rem;
      grid-auto-rows: 150px;
    }

    .sejarah-gallery .gallery-item {
      overflow: hidden;
      border-radius: 20px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .sejarah-gallery .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .sejarah-gallery .gallery-item:hover img {
      transform: scale(1.05);
    }

    .sejarah-gallery .gallery-item.large { grid-column: span 2; grid-row: span 2; }
    .sejarah-gallery .gallery-item.medium { grid-column: span 1; grid-row: span 1; }
    .sejarah-gallery .gallery-item.medium-tall { grid-column: span 1; grid-row: span 2; }
    .sejarah-gallery .gallery-item.wide { grid-column: span 2; grid-row: span 1; }

    .sejarah-text-bottom {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .sejarah-text-bottom h3 {
      font-size: 2rem;
      color: var(--secondary);
      margin-bottom: 1rem;
    }

    /* ===== CATALOG & GALLERY (gaya bersama) ===== */
    .catalog-grid,
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
      margin-top: 2rem;
    }

    .product-card,
    .gallery-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .product-card:hover,
    .gallery-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .product-card img,
    .gallery-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .product-info,
    .gallery-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.2rem 1rem;
      background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
      color: rgb(255, 255, 255);
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
      transition: opacity 2ms ease;
    }

    .product-name,
    .gallery-title {
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 0.2rem;
    }

    .product-category {
      font-size: 0.9rem;
      opacity: 0.9;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .product-price {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255,255,255,0.9);
      color: var(--primary);
      padding: 0.3rem 0.9rem;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.9rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      backdrop-filter: blur(2px);
      z-index: 3;
    }

    .product-wa-hover {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.3);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 10;
    }

    .product-card:hover .product-wa-hover {
      opacity: 1;
    }

    .product-card:hover .product-info {
      opacity: 0;
    }

    .btn-wa-card {
      background-color: #25d366;
      color: white;
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      z-index: 11;
      pointer-events: auto;
    }

    .btn-wa-card:hover {
      background-color: #128C7E;
    }

    /* ===== GALLERY MASONRY ===== */
    .gallery-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      grid-auto-rows: 250px;
      grid-auto-flow: dense;
      gap: 1rem;
    }

    .gallery-container .gallery-item {
      overflow: hidden;
      border-radius: 10px;
      position: relative;
      cursor: pointer;
    }

    .gallery-container .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .gallery-container .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-container .gallery-item .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.8));
      color: white;
      padding: 1rem;
      text-align: center;
      transform: translateY(100%);
      transition: transform 0.3s;
      font-size: 1.1rem;
      font-weight: 500;
    }

    .gallery-container .gallery-item:hover .caption {
      transform: translateY(0);
    }

    .gallery-container .gallery-item.wide { grid-column: span 2; }
    .gallery-container .gallery-item.tall { grid-row: span 2; }
    .gallery-container .gallery-item.big { grid-column: span 2; grid-row: span 2; }

    /* ===== CONTACT SECTION ===== */
    .contact-section {
      background-color: #ffffff;
      padding: 5rem 5%;
    }

    .contact-section .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-section h2 {
      font-size: 2.5rem;
      color: #000000;
      text-align: center;
      margin-bottom: 0.5rem;
    }

    .contact-subtitle {
      text-align: center;
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 2rem;
    }

    .contact-divider {
      width: 80px;
      height: 3px;
      background-color: var(--primary);
      margin: 2rem auto;
      border: none;
    }

    .contact-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
      max-width: 900px;
      margin: 0 auto 2rem;
    }

    .contact-item {
      margin-bottom: 2rem;
      text-align: center;
    }

    .contact-item h4 {
      color: var(--primary);
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 0.3rem;
    }

    .contact-item p {
      color: #333;
      line-height: 1.6;
      margin: 0;
    }

    .map-container {
      margin-top: 3rem;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .map-container iframe {
      width: 100%;
      height: 350px;
      border: none;
      display: block;
    }

    .contact-wa-cta {
      text-align: center;
      margin-top: 3rem;
      margin-bottom: 3rem;
      padding: 2.5rem 2rem;
      background: transparent;
      border-radius: 24px;
    }

    .contact-wa-cta h3 {
      font-size: 2rem;
      color: var(--secondary);
      margin-bottom: 0.75rem;
      font-weight: 600;
    }

    .contact-wa-cta p {
      font-size: 1.1rem;
      color: #444;
      margin-bottom: 2rem;
    }

    .btn-wa-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      background-color: #25d366;
      color: white;
      padding: 0.9rem 2.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .btn-wa-cta:hover {
      background-color: #128C7E;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--footer-bg);
      color: var(--footer-text);
      padding: 3.5rem 5% 2rem;
      font-family: 'Poppins', sans-serif;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2.5rem;
    }

    .footer-section h3 {
      color: var(--primary);
      margin-bottom: 1.2rem;
      font-size: 1.3rem;
      font-weight: 600;
      position: relative;
      padding-bottom: 0.7rem;
    }

    .footer-section h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
    }

    .footer-section.about p,
    .footer-section.services li,
    .address,
    .copyright {
      color: var(--footer-text);
    }

    .footer-section.about p {
      line-height: 1.8;
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }

    .footer-section.services ul {
      list-style: none;
      padding: 0;
    }

    .footer-section.services li {
      margin-bottom: 0.7rem;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.95rem;
    }

    .footer-section.services li i {
      color: var(--primary);
      font-size: 0.9rem;
      width: 18px;
      text-align: center;
    }

    .social-links {
      display: flex;
      gap: 1.2rem;
      margin-bottom: 1.5rem;
    }

    .social-links a {
      color: var(--footer-text);
      font-size: 1.8rem;
      transition: all 0.3s;
    }

    .social-links a:hover {
      color: var(--primary);
      transform: translateY(-3px);
    }

    .address {
      font-style: normal;
      line-height: 1.8;
      font-size: 0.95rem;
    }

    .copyright {
      text-align: center;
      padding-top: 2.5rem;
      margin-top: 2.5rem;
      border-top: 1px solid rgba(42, 157, 143, 0.3);
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .catalog-grid,
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
      /* Sejarah gallery 4 kolom di desktop, tapi di tablet mungkin 3? */
      .sejarah-gallery {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .navbar {
        flex-wrap: wrap;
        padding: 0.8rem 5%;
      }
      .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        gap: 1rem;
        flex-wrap: wrap;
      }
      .nav-links a {
        font-size: 0.9rem;
      }
      .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 5rem;
      }
      .hero-text {
        padding-right: 0;
      }
      .hero-text h1 {
        font-size: 2.2rem;
      }
      .hero-buttons {
        justify-content: center;
      }
      .hero-images {
        order: -1;
        grid-auto-rows: 120px;
      }
      .hero-features {
        margin-top: 2rem;
        grid-template-columns: repeat(2, 1fr);
      }
      section {
        padding: 3rem 5%;
      }
      .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
      }
      .sejarah-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
        gap: 0.8rem;
      }
      .sejarah-gallery .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
      }
      .sejarah-gallery .gallery-item.medium-tall {
        grid-row: span 1;
      }
      .catalog-grid,
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
      .product-card img,
      .gallery-card img {
        height: 220px;
      }
      .product-name {
        font-size: 1rem;
      }
      .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        grid-auto-rows: 180px;
      }
      .gallery-container .gallery-item .caption {
        font-size: 0.9rem;
        padding: 0.5rem;
      }
      .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .contact-item {
        margin-bottom: 1.5rem;
      }
      .contact-section h2 {
        font-size: 2rem;
      }
      .contact-subtitle {
        font-size: 1rem;
      }
      footer {
        padding: 2.5rem 5% 1.5rem;
      }
      .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }
      .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
      }
      .footer-section.services ul {
        display: inline-block;
        text-align: left;
      }
      .footer-section.services li {
        justify-content: center;
      }
      .social-links {
        justify-content: center;
      }
    }

    @media (max-width: 576px) {
      .navbar {
        padding: 0.6rem 4%;
      }
      .logo {
        font-size: 1rem;
      }
      .nav-links {
        gap: 0.5rem;
      }
      .nav-links a {
        font-size: 0.75rem;
        padding-bottom: 3px;
      }
      .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.3;
      }
      .hero-text p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
      }
      .hero-buttons {
        gap: 0.5rem;
        flex-wrap: wrap;
      }
      .btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
      }
      .hero-images {
        grid-auto-rows: 80px;
        gap: 0.4rem;
      }
      .hero-features {
        gap: 0.8rem;
        padding: 1.2rem;
        margin-top: 1.5rem;
      }
      .feature-item {
        padding: 0.8rem 0.5rem;
      }
      .feature-item i {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
      }
      .feature-item h4 {
        font-size: 0.85rem;
        margin-bottom: 0.1rem;
      }
      .feature-item p {
        font-size: 0.7rem;
      }
      .wa-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        line-height: 50px;
        bottom: 20px;
        right: 20px;
      }
      .section-title {
        font-size: 1.6rem;
      }
      .section-title::after {
        width: 60px;
      }
      .sejarah-gallery {
        grid-auto-rows: 80px;
        gap: 0.5rem;
      }
      .sejarah-text-bottom h3 {
        font-size: 1.3rem;
      }
      .sejarah-text-bottom p {
        font-size: 0.9rem;
      }
      .catalog-grid,
      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .product-card img,
      .gallery-card img {
        height: 250px;
      }
      .product-price {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
      }
      .btn-wa-card {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
      }
      .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        grid-auto-rows: 130px;
        gap: 0.5rem;
      }
      .gallery-container .gallery-item .caption {
        font-size: 0.75rem;
        padding: 0.2rem;
      }
      .contact-section {
        padding: 2.5rem 4%;
      }
      .contact-section h2 {
        font-size: 1.6rem;
      }
      .contact-subtitle {
        font-size: 0.9rem;
      }
      .contact-item h4 {
        font-size: 1rem;
      }
      .contact-item p {
        font-size: 0.85rem;
      }
      .contact-divider {
        margin: 1.2rem auto;
      }
      .map-container iframe {
        height: 200px;
      }
      .contact-wa-cta {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
      }
      .contact-wa-cta h3 {
        font-size: 1.3rem;
      }
      .contact-wa-cta p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
      }
      .btn-wa-cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
      }
      footer {
        padding: 2rem 4% 1rem;
      }
      .footer-section h3 {
        font-size: 1.1rem;
      }
      .footer-section p,
      .footer-section li {
        font-size: 0.8rem;
      }
      .social-links a {
        font-size: 1.4rem;
      }
      .copyright {
        font-size: 0.7rem;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
      }
    }

    @media (min-width: 992px) {
      .sejarah-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
      }
      .sejarah-gallery .gallery-item.large,
      .sejarah-gallery .gallery-item.big {
        grid-column: span 2;
        grid-row: span 2;
      }
      .sejarah-gallery .gallery-item.wide {
        grid-column: span 2;
      }
      .sejarah-gallery .gallery-item.tall,
      .sejarah-gallery .gallery-item.medium-tall {
        grid-row: span 2;
      }
      .gallery-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
      }
      .gallery-container .gallery-item.large,
      .gallery-container .gallery-item.big {
        grid-column: span 2;
        grid-row: span 2;
      }
      .gallery-container .gallery-item.wide {
        grid-column: span 2;
      }
      .gallery-container .gallery-item.tall {
        grid-row: span 2;
      }
    }
    @media (max-width: 768px) {
  .hero {
    padding-top: 7rem; /* atau 120px, sesuaikan kebutuhan */
  }
}

/* Untuk mobile kecil (max-width: 576px) */
@media (max-width: 576px) {
  .hero {
    padding-top: 6rem; /* atau 100px */
  }
}
    /* Gallery Section dengan Animasi */
.gallery-section {
  padding: 4rem 5%;
  background: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  aspect-ratio: 4 / 3; /* membuat tinggi konsisten */
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.gallery-caption p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.gallery-caption .phone {
  font-weight: 500;
  color: #FFD700; /* warna emas untuk kontras */
  margin-top: 0.3rem;
}

/* Responsif */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-caption {
    padding: 1rem;
  }
  .gallery-caption h3 {
    font-size: 1rem;
  }
}
/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-modal.show {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: #bbb;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  text-align: center;
}

#lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: white;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(0,0,0,0.6);
  border-radius: 8px;
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}