@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --blue-dark: #1B3A5C;
    --blue-mid: #2A5580;
    --blue-light: #3D7AB5;
    --blue-soft: #5A9BD5;
    --gold: #C9A84C;
    --gold-light: #E0C97A;
    --cream: #F5F7FA;
    --cream-dark: #E8EDF4;
    --white: #FFFFFF;
    --text-dark: #1A2332;
    --text-mid: #4A5568;
    --text-light: #8A95A5;
    --wa-green: #25D366;
    --wa-dark: #128C7E;
    --shadow-sm: 0 2px 8px rgba(27,58,92,0.06);
    --shadow-md: 0 4px 20px rgba(27,58,92,0.10);
    --shadow-lg: 0 8px 40px rgba(27,58,92,0.14);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================
   NAVBAR
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo {
    color: var(--blue-dark);
}

.nav-logo svg {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.navbar.scrolled .nav-links a {
    color: var(--text-mid);
}

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

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

.nav-links a:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--blue-dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    z-index: 999;
    padding: 80px 32px 32px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--cream-dark);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--blue-dark);
    padding-left: 8px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* ================================
   HERO
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/images/hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 58, 92, 0.88) 0%,
        rgba(15, 25, 40, 0.7) 50%,
        rgba(42, 85, 128, 0.82) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 168, 67, 0.2);
    border: 1px solid rgba(212, 168, 67, 0.5);
    color: var(--gold-light);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero .tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--wa-green);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.hero-cta:hover {
    background: var(--wa-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.hero-cta svg {
    width: 22px;
    height: 22px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.6);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ================================
   SECTION SHARED
   ================================ */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .overline {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--blue-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 16px auto;
    border-radius: 2px;
}

/* ================================
   TENTANG KAMI
   ================================ */
.tentang {
    background: var(--white);
}

.tentang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tentang-text h3 {
    font-size: 1.8rem;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.tentang-text p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 1rem;
}

.tentang-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tentang-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.tentang-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.highlight-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--cream);
    border-radius: var(--radius);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.highlight-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.highlight-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 4px;
}

.highlight-card p {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ================================
   MENGAPA MEMILIH KAMI
   ================================ */
.mengapa {
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
}

.mengapa::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,168,67,0.1), transparent 70%);
    border-radius: 50%;
}

.mengapa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mengapa-content .quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--blue-dark);
    border-left: 4px solid var(--gold);
    padding-left: 24px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.mengapa-content p {
    color: var(--text-mid);
    margin-bottom: 16px;
}

.mengapa-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mengapa-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* ================================
   PRODUK & HARGA
   ================================ */
.produk {
    background: var(--white);
}

.produk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.produk-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.produk-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.produk-card.best-value {
    border: 2px solid var(--gold);
}

.produk-card.best-value .produk-badge {
    display: block;
}

.produk-badge {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.produk-img {
    height: 220px;
    overflow: hidden;
}

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

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

.produk-info {
    padding: 28px 24px;
    text-align: center;
}

.produk-info h3 {
    font-size: 1.3rem;
    color: var(--blue-dark);
    margin-bottom: 4px;
}

.produk-info .variant {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.produk-info .harga {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 4px;
}

.produk-info .harga small {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

.produk-info .per-kg {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.produk-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wa-green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.produk-cta:hover {
    background: var(--wa-dark);
    transform: translateY(-2px);
}

.produk-cta svg {
    width: 18px;
    height: 18px;
}

/* ================================
   GALERI
   ================================ */
.galeri {
    background: var(--cream-dark);
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.galeri-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

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

.galeri-item:hover img {
    transform: scale(1.08);
}

.galeri-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,58,92,0.45), transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.galeri-item:hover::after {
    opacity: 1;
}

.galeri-item .galeri-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.galeri-item:hover .galeri-icon {
    transform: translate(-50%, -50%) scale(1);
}

.galeri-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 40px;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

/* ================================
   PENUTUP / QUOTE
   ================================ */
.penutup {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.penutup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.penutup blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--white);
    font-style: italic;
    max-width: 750px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.penutup blockquote::before {
    content: '"';
    font-size: 5rem;
    color: var(--gold);
    position: absolute;
    top: -30px;
    left: -20px;
    font-family: 'Playfair Display', serif;
    opacity: 0.5;
}

.penutup .hero-cta {
    position: relative;
    z-index: 1;
}

/* ================================
   LOKASI
   ================================ */
.lokasi {
    background: var(--white);
}

.lokasi-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.lokasi-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/10;
}

.lokasi-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.lokasi-info {
    padding: 8px 0;
}

.lokasi-info h3 {
    font-size: 1.5rem;
    color: var(--blue-dark);
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--blue-dark);
}

.info-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-text p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--text-dark);
    padding: 48px 0 24px;
    color: rgba(255,255,255,0.7);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
}

/* ================================
   FLOATING WA BUTTON
   ================================ */
.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--wa-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.floating-wa svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-wa.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
}

/* ================================
   ANIMATIONS
   ================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .tentang-grid,
    .mengapa-grid,
    .lokasi-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tentang-image,
    .mengapa-image {
        order: -1;
    }

    .tentang-image img,
    .mengapa-image img {
        height: 320px;
    }

    .produk-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeri-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeri-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 2/1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-overlay {
        display: block;
    }

    .hero-bg {
        background-attachment: scroll;
        transform: scale(1);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .produk-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .galeri-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .galeri-item:nth-child(1) {
        grid-column: span 2;
        aspect-ratio: 2/1;
    }

    .lokasi-map {
        aspect-ratio: 16/12;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .penutup blockquote {
        padding: 0 16px;
    }

    .penutup blockquote::before {
        left: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .galeri-grid {
        grid-template-columns: 1fr;
    }

    .galeri-item:nth-child(1) {
        grid-column: span 1;
        aspect-ratio: 1;
    }

    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}
