:root {
    /* Gold palette - elegant and luxurious */
    --gold-main:   #d4af37;
    --gold-bright: #f4e6a2;
    --gold-deep:   #b8941f;
    --gold-light:  #f8f0d8;

    /* Neutrals - warm and inviting */
    --cream:       #faf8f3;
    --cream-dark:  #f0ebe0;
    --white:       #ffffff;
    --ivory:       #fffff0;

    /* Accent colors */
    --rose-soft:   #d4a5a5;
    --rose-dust:   #e8d5d5;

    /* Text colors */
    --text-dark:   #5a4a3a;
    --text-medium: #8b7355;
    --text-light:  #a89a85;

    /* Shadows */
    --shadow-sm:   0 2px 8px rgba(212, 175, 55, 0.1);
    --shadow-md:   0 4px 16px rgba(212, 175, 55, 0.15);
    --shadow-lg:   0 8px 24px rgba(212, 175, 55, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= HEADER ================= */

.header {
    background: linear-gradient(135deg, var(--white) 0%, var(--ivory) 100%);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold-light);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-deep);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    border-radius: 8px;
}

.logo-text {
    white-space: nowrap;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-deep);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-main), var(--gold-bright));
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { width: 0; }
    to   { width: 100%; }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-main));
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ================= HERO ================= */

.hero {
    background-image: url('../images/baruuu.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.hero-title,
.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold-main), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    font-weight: 700;
}

.tagline {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-medium);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================= BUTTONS ================= */

.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.4s ease;
    z-index: 0;
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    margin-right: 0.6rem;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-deep) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-main) 100%);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold-deep);
    border: 2px solid var(--gold-deep);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
    color: var(--white);
    border-color: var(--gold-main);
}

.btn-small { padding: 10px 24px; font-size: 0.95rem; }
.btn-large { padding: 16px 45px; font-size: 1.15rem; }
.btn-full  { width: 100%; }

/* ================= INTRO ================= */

.intro {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.intro-box {
    max-width: 950px;
    margin: 0 auto;
}

.intro-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--gold-deep);
    position: relative;
    padding-bottom: 1.5rem;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-main), var(--gold-bright));
    border-radius: 2px;
}

.intro-text {
    max-width: 850px;
    margin: 0 auto 3.5rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-medium);
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.stat-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--ivory) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--gold-light);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-main);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 1.05rem;
}

/* ================= SERVICES ================= */

.services {
    padding: 4.5rem 0;
    background: radial-gradient(
        circle at top,
        rgba(244, 230, 162, 0.18),
        rgba(248, 243, 233, 1) 40%,
        rgba(248, 243, 233, 1) 100%
    );
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--gold-deep);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-main), var(--gold-bright));
    border-radius: 999px;
}

.section-subtitle {
    text-align: center;
    font-size: 0.98rem;
    color: var(--text-light);
    margin: 0 auto 2.5rem;
    max-width: 620px;
}

/* grid kad jenis design */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.8rem;
}

/* kad individu */
.service-card {
    background: var(--white);
    padding: 1.9rem 1.6rem 1.6rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.18);
    position: relative;
    overflow: hidden;
    max-width: 260px;
    margin: 0 auto;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left,
        rgba(244, 230, 162, 0.28),
        transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-main);
}

.service-card:hover::before {
    opacity: 1;
}

/* gambar preview kad (jenis rusty, songket, dll) */
.service-thumb {
    margin: 0 0 1.2rem;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.service-thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.service-card:hover .service-thumb img {
    transform: scale(1.05);
}

/* tajuk & isi */
.service-card h3 {
    margin-bottom: 0.7rem;
    color: var(--gold-deep);
    font-size: 1.05rem;
}

.service-meta {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.7rem;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.1rem;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* link bawah */
.service-link {
    color: var(--gold-deep);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
}

.service-link i {
    font-size: 0.85rem;
}

.service-link:hover {
    color: var(--gold-main);
    transform: translateX(4px);
}

/* responsive */
@media (max-width: 768px) {
    .services {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.8rem 1.5rem 1.5rem;
    }

    .service-thumb img {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .service-card {
        max-width: 100%;
    }
}
/* ================= HIGHLIGHTS ================= */

.highlights {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.highlight-item {
    padding: 2.5rem;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--ivory) 100%);
    transition: all 0.3s ease;
    border: 2px solid var(--gold-light);
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-main);
}

.highlight-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
}

.highlight-item h3 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.highlight-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* ================= PROCESS ================= */

.process {
    padding: 6rem 0;
    background: var(--cream);
}

.process-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    background: linear-gradient(135deg, var(--white) 0%, var(--ivory) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--gold-light);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-main);
}

.step-number {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.process-step h3 {
    margin-bottom: 0.8rem;
    color: var(--gold-deep);
}

.process-step p {
    color: var(--text-medium);
    font-size: 1rem;
}

.process-arrow {
    font-size: 2.5rem;
    color: var(--gold-main);
    font-weight: bold;
}

/* ================= PORTFOLIO ================= */

.portfolio-preview {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    border-radius: 22px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gold-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.portfolio-thumb {
    position: relative;
    width: 100%;
    /* nisbah lebih kurang macam sample kad yang panjang */
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

/* gambar kad */
.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* overlay bawah gambar – untuk title & caption */
.portfolio-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.1rem 1.4rem 1.3rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.60),
        rgba(0, 0, 0, 0.05),
        transparent
    );
    color: #fff;
    text-align: left;
}

.portfolio-overlay h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* hover effect – gambar zoom sikit & shadow kuat */
.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-main);
}

.portfolio-item:hover .portfolio-thumb img {
    transform: scale(1.06);
}

.view-more {
    text-align: center;
}

/* ================= CTA ================= */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-bright) 50%, var(--gold-main) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.2), transparent 60%);
}

.cta-box {
    text-align: center;
    color: var(--white);
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: var(--white);
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--gold-deep);
}

.cta-buttons .btn-primary:hover {
    background: var(--ivory);
    transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--gold-deep);
}

/* ================= PORTFOLIO ================= */

.portfolio-preview {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--gold-light);
}

.portfolio-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--gold-main) 0%, var(--gold-bright) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-main);
}

.portfolio-item:hover .portfolio-image::before {
    opacity: 1;
}

.portfolio-image i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.portfolio-image p {
    font-weight: 600;
    position: relative;
    z-index: 2;
    font-size: 1.15rem;
}

.view-more {
    text-align: center;
}

/* Feedback screenshot gallery bawah testimoni teks */

.feedback-gallery {
    margin-top: 4rem;
}

.feedback-title {
    text-align: center;
    font-size: 1.6rem;
    color: var(--gold-deep);
    margin-bottom: 0.4rem;
}

.feedback-subtitle {
    text-align: center;
    font-size: 0.98rem;
    color: var(--text-medium);
    max-width: 650px;
    margin: 0 auto 2rem;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.feedback-item {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gold-light);
    transition: all 0.3s ease;
}

.feedback-item img {
    width: 100%;
    height: 420px;            /* supaya cropping lawa untuk screenshot panjang */
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.feedback-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-main);
}

.feedback-item:hover img {
    transform: scale(1.03);
}
.feedback-caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}/* ============ FEEDBACK SCREENSHOTS ============ */

.feedback-screenshots {
    padding: 6rem 0;
    background: var(--cream);
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.feedback-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--ivory) 100%);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gold-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-main);
}

/* wrapper gambar */
.feedback-image-wrap {
    padding: 0.9rem 0.9rem 0;
}

.feedback-image-wrap img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

/* caption bawah gambar */
.feedback-caption {
    padding: 1.3rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(255, 255, 255, 0.9);
}

.feedback-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.feedback-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-deep);
}

/* responsive */
@media (max-width: 768px) {
    .feedback-grid {
        grid-template-columns: 1fr;
    }
}


/* responsive kecil */
@media (max-width: 768px) {
    .feedback-grid {
        grid-template-columns: 1fr;
    }

    .feedback-item img {
        height: 380px;
    }
}

.page-header {
    padding: 4.5rem 0 3.2rem;
    background: radial-gradient(circle at top,
        rgba(244, 230, 162, 0.25),
        rgba(250, 248, 243, 1) 50%,
        rgba(250, 248, 243, 1) 100%
    );
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--gold-deep);
    margin-bottom: 0.6rem;
}

.page-header p {
    font-size: 1rem;
    color: var(--text-medium);
}

/* main gallery wrapper */
.gallery {
    padding: 4rem 0 5.5rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

/* setiap kategori */
.gallery-section {
    margin-bottom: 3.8rem;
}

.gallery-section:last-of-type {
    margin-bottom: 0;
}

.gallery-section-header {
    margin-bottom: 1.8rem;
    border-left: 4px solid var(--gold-main);
    padding-left: 1rem;
}

.gallery-section-header h2 {
    font-size: 1.6rem;
    color: var(--gold-deep);
    margin-bottom: 0.3rem;
}

.gallery-section-header p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* grid gambar */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.8rem;
}

/* kad gambar */
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gold-light);
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* overlay gradient soft di bawah gambar untuk rasa premium */
.gallery-caption-bar {
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.75rem 1rem 0.9rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.60),
        rgba(0, 0, 0, 0.10),
        transparent
    );
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gallery-caption-title {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.gallery-caption-note {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* hover effect */
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-main);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* lightbox (kalau guna js untuk zoom) */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.78);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;      /* supaya image + text susun menegak */
    padding: 2rem 1rem;
    z-index: 2000;
}

.lightbox.open {
    display: flex;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 3px solid var(--gold-light);
    background: #fff;
}

.lightbox-details {
    margin-top: 1rem;
    text-align: center;
    color: #fff;
}

.lightbox-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.lightbox-meta {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.1rem;
    }

    .gallery-section-header {
        border-left-width: 3px;
        text-align: left;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem;
    }

    .gallery-item img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 210px;
    }
}
/* ================= FOOTER – TEMA CREAM & GOLD ================= */

.footer {
    background: radial-gradient(circle at top,
                rgba(244,230,162,0.25),
                var(--cream-dark) 40%,
                var(--cream) 100%);
    color: var(--text-dark);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--gold-light);
    margin-top: 0;
}

/* grid 3 column dalam satu container */
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr;
    gap: 3rem;
    align-items: flex-start;
}

/* setiap column */
.footer-col {
    /* tak buat card besar, cuma spacing kemas */
}

/* row title + icon bulat (ala contoh) */
.footer-title-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.footer-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
    color: #fff;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.footer h3,
.footer h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--gold-deep);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* text umum */
.footer-slogan {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-medium);
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-contact p i {
    width: 18px;
}

.footer-contact p:hover {
    color: var(--gold-deep);
    transform: translateX(2px);
}

/* alamat (link) */
.footer-address a {
    color: inherit;
    text-decoration: underline dotted var(--gold-light);
}
.footer-address a:hover {
    text-decoration-style: solid;
}

/* map kecil bawah contact */
.footer-map {
    margin-top: 0.8rem;
    max-width: 320px;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid var(--gold-light);
    box-shadow: var(--shadow-sm);
}
.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* pautan pantas */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.footer-links a::before {
    content: "›";
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: inherit;
}

.footer-links a:hover {
    color: var(--gold-deep);
    transform: translateX(4px);
}
.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* social */
.footer-follow-text,
.footer-mini-note {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-deep);
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    border: 1px solid var(--gold-light);
    text-decoration: none;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-mini-note i {
    color: var(--gold-main);
}

/* bottom strip */
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--gold-light);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* responsive */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1.5fr 1fr;
        row-gap: 2.5rem;
    }
}

@media (max-width: 720px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-map {
        max-width: 100%;
    }
}


/* ================= FLOATING BUTTONS ================= */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #20a644 100%);
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--white) 0%, var(--ivory) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
        border-top: 2px solid var(--gold-light);
    }

    .nav-menu.active { left: 0; }

    .hero-title,
    .hero h1 { font-size: 2.8rem; }

    .tagline { font-size: 1.3rem; }
    .hero-subtitle { font-size: 1.05rem; }

    .section-title { font-size: 2.2rem; }

    .service-grid,
    .highlights-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline { flex-direction: column; }
    .portfolio-grid   { grid-template-columns: repeat(2, 1fr); }
    .cta-buttons      { flex-direction: column; }
}

@media (max-width: 480px) {
    .logo { font-size: 1.4rem; }
    
    .logo-img { height: 35px; }
    
    .hero-title,
    .hero h1 { font-size: 2rem; }
    
    .tagline { font-size: 1.1rem; }
    .hero-subtitle { font-size: 1rem; }
    
    .section-title { font-size: 1.8rem; }

    .intro-stats { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 85px;
        right: 20px;
    }

    .cta-box h2 { font-size: 2rem; }
    .cta-box p  { font-size: 1.05rem; }
}
/* ========= TEMPLATE KAD SECTION ========= */

.template-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.template-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--ivory) 100%);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.template-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
              rgba(244, 230, 162, 0.28),
              transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.template-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  color: var(--gold-deep);
}

.template-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* hover effect */
.template-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-main);
}

.template-card:hover::before {
  opacity: 1;
}

/* responsive kecil */
@media (max-width: 480px) {
  .template-card {
    padding: 1.6rem 1.4rem;
  }
}
/* ============ PRODUK & ADD-ON PAGE ============ */

.products-section {
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

/* intro dengan poster sebelah */
.products-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.products-intro-text {
  max-width: 620px;
}

.section-title.small-title {
  font-size: 2rem;
  margin-bottom: 0.9rem;
}

.products-intro-copy {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.products-bullets {
  margin: 0 0 1.6rem;
  padding-left: 1.2rem;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
}

.products-bullets li {
  margin-bottom: 0.25rem;
}

/* poster */
.products-poster {
  justify-self: center;
  max-width: 360px;
}

.products-poster img {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-light);
}

/* grid untuk dua kad utama */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

/* kad pakej / single item */
.addon-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--ivory) 100%);
  border-radius: 20px;
  padding: 2rem 1.8rem 2.1rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold-light);
  transition: all 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-main);
}

/* header kad */
.addon-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.addon-card-header h3 {
  margin: 0 0 0.2rem;
  font-size: 1.3rem;
  color: var(--gold-deep);
}

.addon-card-header p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* ikon bulat */
.addon-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-bright));
  color: #fff;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.addon-icon.secondary {
  background: linear-gradient(135deg, var(--rose-soft), var(--gold-main));
}

/* senarai item */
.addon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(212, 175, 55, 0.35);
}

.addon-item:first-child {
  border-top: none;
  padding-top: 0;
}

.addon-info h4 {
  font-size: 0.98rem;
  margin: 0 0 0.15rem;
  color: var(--text-dark);
}

.addon-info p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* harga sebelah kanan */
.addon-price {
  text-align: right;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.price-now {
  font-weight: 700;
  font-size: 1rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-deep));
  color: #fff;
}

.price-old {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
}

/* CTA bawah */
.products-cta {
  margin-top: 3.5rem;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.products-cta p {
  margin-bottom: 1.4rem;
  font-size: 0.98rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* ===== RESPONSIVE PRODUK ===== */
@media (max-width: 900px) {
  .products-intro {
    grid-template-columns: 1fr;
  }

  .products-poster {
    max-width: 320px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .products-section {
    padding: 4rem 0 4.5rem;
  }

  .addon-card {
    padding: 1.7rem 1.4rem 1.9rem;
  }

  .addon-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .addon-price {
    align-items: flex-start;
  }
}
/* ===== Koleksi Kad Diproses ===== */

.processed-gallery {
  padding: 4rem 0 4.5rem;
  background: var(--bg-soft, #faf7f2);
}

.processed-header {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
}

.processed-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.2vw, 2.1rem);
  margin-bottom: 0.5rem;
}

.processed-header p {
  font-size: 0.95rem;
  color: var(--text-medium, #6b6b6b);
}

/* FILTER PILLS */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-pill {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
  color: var(--text-main, #333);
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.filter-pill.active {
  background: var(--gold-main, #c7a15a);
  color: #ffffff;
  border-color: transparent;
}

/* GRID */

.processed-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* CARD */

.product-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.14);
}

.product-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f1f1f1;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* small gradient so text nampak smooth dengan gambar */
.product-card-body {
  padding: 1rem 1.1rem 1.3rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.96), #ffffff);
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.product-desc {
  font-size: 0.87rem;
  line-height: 1.5;
  color: var(--text-medium, #6b6b6b);
}

/* Responsive tweak for mobile */
@media (max-width: 600px) {
  .filter-bar {
    justify-content: flex-start;
  }

  .processed-gallery {
    padding: 3rem 0 3.5rem;
  }
}
/* ========== GLOBAL ========== */
:root {
  --bg-body: #f8f4ef;
  --bg-card: #ffffff;
  --bg-soft: #f2e6d9;
  --text-main: #1f1b1a;
  --text-soft: #6a5a52;
  --gold-main: #c89b3c;
  --gold-soft: #e7c889;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --transition-fast: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: var(--bg-body);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 100% - 2.5rem);
  margin: 0 auto;
}

section {
  padding: 4rem 0;
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 244, 239, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.logo-img {
  height: 40px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.92rem;
  color: var(--text-soft);
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text-main);
  border-color: var(--gold-main);
}

/* hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
}

/* ========== PAGE HEADER ========== */
.page-header {
  text-align: center;
  padding: 3.5rem 0 2.5rem;
}

.page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  margin-bottom: 0.5rem;
}

.page-header p {
  max-width: 540px;
  margin: 0.25rem auto 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

/* ========== GALLERY FILTER ========== */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.filter-btn {
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: #fff;
  color: var(--text-soft);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.filter-btn.active {
  background: var(--gold-main);
  border-color: var(--gold-main);
  color: #fff;
  box-shadow: 0 6px 16px rgba(200, 155, 60, 0.35);
}

/* ========== GALLERY GRID ========== */
.gallery {
  padding-top: 0;
}

.gallery-grid {
  display: grid;
  gap: 1.7rem;
}

.gallery-grid-collection {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

/* card */
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), translate var(--transition-fast);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-fast);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

/* caption overlay */
.gallery-caption-bar {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.25rem 1.3rem 1.1rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.2),
    transparent
  );
  color: #fff;
}

.gallery-caption-title {
  font-size: 0.98rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.gallery-caption-note {
  font-size: 0.86rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 8, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  z-index: 30;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: min(90vw, 900px);
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 1.6rem;
  cursor: pointer;
}

.lightbox-prev {
  left: 1.5rem;
}
.lightbox-next {
  right: 1.5rem;
}

/* ========== FOOTER ========== */
.footer {
  background: #1a1412;
  color: #f7eee4;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.footer-title-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.footer-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icon-circle i {
  font-size: 0.9rem;
  color: var(--gold-soft);
}

.footer h3 {
  font-size: 1.05rem;
  margin: 0;
}

.footer-slogan {
  font-size: 0.9rem;
  margin: 0.2rem 0 0.9rem;
  color: #e1d5c8;
}

.footer-contact p {
  margin: 0.15rem 0;
  font-size: 0.88rem;
}

.footer-contact i {
  margin-right: 0.4rem;
  color: var(--gold-soft);
}

.footer-address a {
  color: #f7eee4;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.footer-map iframe {
  width: 100%;
  height: 160px;
  border: 0;
  border-radius: 12px;
  margin-top: 0.9rem;
}

/* links col */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #e5d9cc;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-soft);
  transform: translateX(2px);
}

/* social col */
.footer-follow-text {
  font-size: 0.9rem;
  color: #e5d9cc;
  margin: 0 0 0.9rem;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.social-icon i {
  font-size: 0.95rem;
}

.social-icon:hover {
  background: var(--gold-main);
  border-color: var(--gold-main);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 0.9rem;
  text-align: center;
  font-size: 0.8rem;
  color: #d7c7b5;
}

/* ========== FLOAT BUTTONS ========== */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 35;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 4.8rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(26, 20, 18, 0.88);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 34;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr;
  }
  .footer-map iframe {
    height: 140px;
  }
}

@media (max-width: 768px) {
  .header .container {
    padding-inline: 0;
  }

  .nav-menu {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(248, 244, 239, 0.98);
    flex-direction: column;
    padding: 0.75rem 1.2rem 1.2rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-map iframe {
    height: 180px;
  }

  .gallery-item img {
    height: 230px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding-top: 2.7rem;
  }

  .gallery-grid-collection {
    grid-template-columns: 1fr;
  }

  .gallery-caption-bar {
    padding: 1rem 1.05rem 0.9rem;
  }
}
