/* ============================================
   FATHWORKS DESIGN - Custom Cabinet Website
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #1B5E20;
    --primary-dark: #06140A;
    --primary-light: #4F8F5B;
    --secondary: #0F1F13;
    --dark: #07180C;
    --dark-2: #0B2412;
    --dark-3: #12351D;
    --gray: #7B887D;
    --gray-light: #D4DED3;
    --light: #F0F7F1;
    --light-2: #E3EFE4;
    --white: #ffffff;
    --text: #243326;
    --text-light: #5B6D5E;
    --green: #25D366;
    --cream: #F7FBF5;
    --sand: #CFE2CF;
    --wood: #254D2C;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --shadow: 0 18px 50px rgba(6, 20, 10, 0.10);
    --shadow-lg: 0 28px 80px rgba(6, 20, 10, 0.18);
    --transition: all 0.3s ease;
    --radius: 22px;
    --radius-sm: 14px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 8px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

/* ---- Container ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Section ---- */
.section {
    padding: 110px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--primary-light);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.35rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}

.section-title .highlight {
    color: var(--primary);
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 12px 34px rgba(27, 94, 32, 0.28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6AA875, var(--primary-dark));
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(27, 94, 32, 0.38);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-dark:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(7, 24, 12, 0.92);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--sand);
    letter-spacing: 8px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, rgba(6, 20, 10, 0.98) 0%, rgba(11, 36, 18, 0.95) 48%, rgba(27, 94, 32, 0.82) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px),
        radial-gradient(ellipse at 18% 30%, rgba(79, 143, 91, 0.35) 0%, transparent 42%),
        radial-gradient(ellipse at 82% 66%, rgba(207, 226, 207, 0.18) 0%, transparent 44%);
    background-size: 72px 72px, 72px 72px, auto, auto;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(115deg, rgba(6, 20, 10, 0.80) 0%, rgba(7, 24, 12, 0.42) 48%, rgba(79, 143, 91, 0.14) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="0.5" fill="rgba(255,255,255,0.04)"/><circle cx="50" cy="10" r="0.3" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 980px;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid rgba(207, 226, 207, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--sand);
    margin-bottom: 26px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.1rem, 7vw, 6.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 0.98;
    letter-spacing: -0.055em;
    margin-bottom: 28px;
}

.hero-title .highlight {
    color: var(--sand);
    font-style: italic;
    text-shadow: 0 18px 50px rgba(79, 143, 91, 0.22);
}

.hero-description {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.76);
    max-width: 720px;
    margin: 0 auto 42px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background:
        radial-gradient(circle at 14% 20%, rgba(79, 143, 91, 0.14), transparent 32%),
        linear-gradient(180deg, var(--cream), var(--white));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 58px;
    text-align: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(79, 143, 91, 0.20);
    border-radius: calc(var(--radius) + 10px);
    box-shadow: var(--shadow-lg);
}

.about-grid .about-stats {
    justify-content: center;
}

.about-content .section-subtitle,
.about-content .section-title {
    text-align: center;
}

.about-content .section-title {
    font-size: clamp(2.25rem, 4vw, 3.4rem);
}

.about-text {
    color: var(--text-light);
    margin: 0 auto 18px;
    max-width: 780px;
    font-size: 1.04rem;
    line-height: 1.95;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 38px;
    padding-top: 34px;
    border-top: 1px solid rgba(79, 143, 91, 0.22);
    justify-items: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background:
        linear-gradient(180deg, var(--light), #F7FBF5 55%, var(--light-2));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.86);
    padding: 42px 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(79, 143, 91, 0.18);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 143, 91, 0.16), rgba(255, 255, 255, 0));
    transform: translateY(-100%);
    transform-origin: top;
    transition: transform 0.45s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 143, 91, 0.38);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--cream), var(--light-2));
    border: 1px solid rgba(79, 143, 91, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    box-shadow: 0 18px 36px rgba(27, 94, 32, 0.22);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    background: var(--cream);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(79, 143, 91, 0.22);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-color: transparent;
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 18px 50px rgba(6, 20, 10, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-img-placeholder {
    width: 100%;
    height: 320px;
    background:
        linear-gradient(135deg, rgba(6, 20, 10, 0.92), rgba(79, 143, 91, 0.78)),
        linear-gradient(45deg, rgba(255,255,255,0.08) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.08) 75%, transparent 75%, transparent);
    background-size: auto, 34px 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.portfolio-img-placeholder i {
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.4;
}

/* ---- Always-visible bottom-left stack (title / price / lokasi) ---- */
.portfolio-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 14px 18px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
    color: var(--white);
    pointer-events: none; /* whole card handles clicks */
    transition: opacity 0.25s ease;
    z-index: 2;
    text-align: left;
}

.portfolio-bar-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.portfolio-bar-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFD54F;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
    line-height: 1.25;
    margin-top: 2px;
}

.portfolio-bar-lokasi {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
    line-height: 1.3;
    margin-top: 4px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Hide the bar while the full overlay is showing (cleaner look) */
.portfolio-item:hover .portfolio-bar,
.portfolio-item.is-open .portfolio-bar {
    opacity: 0;
}

/* ---- Full overlay (description / lokasi / harga) ---- */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(to top, rgba(6, 20, 10, 0.94) 36%, rgba(7, 24, 12, 0.58) 76%, rgba(7, 24, 12, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item.is-open .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img-placeholder {
    transform: scale(1.05);
}

.portfolio-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.portfolio-overlay .portfolio-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    line-height: 1.45;
}

.portfolio-overlay .portfolio-lokasi {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 4px 0;
}

.portfolio-overlay .portfolio-harga {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFD54F;
    margin: 8px 0 0;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   PORTFOLIO LIGHTBOX MODAL
   ============================================================ */
.pf-lightbox-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: pfLbFadeIn 0.25s ease forwards;
}
@keyframes pfLbFadeIn {
    to { opacity: 1; }
}
.pf-lightbox {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(92vw, 900px);
    max-height: 92vh;
    background: #0e1f14;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.7);
    transform: scale(0.93);
    animation: pfLbPop 0.25s ease forwards;
}
@keyframes pfLbPop {
    to { transform: scale(1); }
}

/* --- Carousel area --- */
.pf-lb-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: #060f09;
    overflow: hidden;
    flex-shrink: 0;
}
.pf-lb-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.pf-lb-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pf-lb-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

/* --- Arrow buttons --- */
.pf-lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;
    backdrop-filter: blur(4px);
}
.pf-lb-arrow:hover { background: rgba(0,0,0,0.82); }
.pf-lb-arrow-prev { left: 12px; }
.pf-lb-arrow-next { right: 12px; }
.pf-lb-arrow.hidden { display: none; }

/* --- Image counter badge --- */
.pf-lb-counter {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(0,0,0,0.55);
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 10;
}

/* --- Dot indicators --- */
.pf-lb-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}
.pf-lb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.pf-lb-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* --- Info panel below image --- */
.pf-lb-info {
    padding: 20px 24px 22px;
    overflow-y: auto;
    flex: 1;
}
.pf-lb-info h2 {
    font-family: var(--font-heading, sans-serif);
    font-size: 1.25rem;
    color: #fff;
    margin: 0 0 6px;
}
.pf-lb-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
}
.pf-lb-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFD54F;
    letter-spacing: 0.3px;
}
.pf-lb-lokasi {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
.pf-lb-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    white-space: pre-wrap;
    margin: 0;
}

/* --- Close button --- */
.pf-lb-close {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    backdrop-filter: blur(4px);
    transition: background 0.18s;
}
.pf-lb-close:hover { background: rgba(200,0,0,0.7); }

/* --- Single image: hide arrows and dots --- */
.pf-lb-carousel.single .pf-lb-arrow,
.pf-lb-carousel.single .pf-lb-dots,
.pf-lb-carousel.single .pf-lb-counter { display: none; }

/* Responsive: on small screens, use a taller ratio */
@media (max-width: 600px) {
    .pf-lb-carousel { aspect-ratio: 1/1; }
    .pf-lb-info { padding: 14px 16px 18px; }
    .pf-lb-info h2 { font-size: 1.05rem; }
}

.portfolio-category {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-cta {
    text-align: center;
    margin-top: 50px;
}

.portfolio-cta p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.portfolio-social-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   PRICE CALCULATOR SECTION
   ============================================ */
.calculator {
    background:
        radial-gradient(circle at 80% 18%, rgba(79, 143, 91, 0.16), transparent 30%),
        var(--light);
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.calc-container {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(79, 143, 91, 0.22);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.calc-section {
    padding: 30px 40px;
    border-bottom: 1px solid #f0f0f0;
}

.calc-section:last-of-type {
    border-bottom: none;
}

.calc-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.calc-section-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.calc-section-icon i {
    font-size: 1rem;
    color: var(--white);
}

.calc-section-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
}

.calc-section-header h3 span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr 150px;
    gap: 20px;
    align-items: end;
}

.calc-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.calc-field select,
.calc-field input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    border: 1px solid rgba(79, 143, 91, 0.25);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.calc-field select:focus,
.calc-field input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
}

.calc-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.calc-fixed-material {
    padding: 12px 16px;
    background: var(--cream);
    border: 1px solid rgba(79, 143, 91, 0.25);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-fixed-material i {
    color: var(--green);
}

.calc-result {
    text-align: right;
}

.calc-result label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 8px;
}

.calc-result span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

/* Add-ons */
.calc-addon-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-addon {
    display: grid;
    grid-template-columns: 1fr auto 150px;
    gap: 20px;
    align-items: center;
    padding: 16px 20px;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.calc-addon-info label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    display: block;
}

.addon-price {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.calc-addon-input {
    display: flex;
    align-items: center;
    gap: 0;
}

.qty-btn {
    width: 38px;
    height: 38px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.qty-btn.minus {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.qty-btn.plus {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.qty-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.calc-addon-input input {
    width: 50px;
    height: 38px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-left: none;
    border-right: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    outline: none;
}

.calc-addon-check {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 28px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.calc-addon .calc-result {
    text-align: right;
}

.calc-addon .calc-result span {
    font-size: 1.2rem;
}

/* Grand Total */
.calc-grand-total {
    background: linear-gradient(135deg, var(--dark), var(--primary-dark));
    padding: 40px;
    text-align: center;
}

.grand-total-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.grand-total-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
}

.grand-total-label i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.grand-total-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
}

.calc-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    font-style: italic;
}

.calc-whatsapp-btn {
    background: var(--green) !important;
    border-color: var(--green) !important;
}

.calc-whatsapp-btn:hover {
    background: #1da851 !important;
    border-color: #1da851 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* ============================================
   PROCESS SECTION (Vertical Timeline)
   ============================================ */
.process {
    background:
        linear-gradient(180deg, var(--cream), var(--white));
}

.process-timeline-vertical {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.process-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary), var(--primary-dark));
    border-radius: 3px;
}

.process-step-v {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 12px;
    position: relative;
}

.step-marker {
    flex-shrink: 0;
    z-index: 1;
}

.step-dot {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.process-step-v:hover .step-dot {
    background: var(--primary);
    color: var(--white);
}

.step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.86);
    padding: 26px 30px;
    border: 1px solid rgba(79, 143, 91, 0.18);
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-card:hover {
    box-shadow: var(--shadow);
    transform: translateX(8px);
}

.step-card-final {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: var(--white);
}

.step-card-final h3,
.step-card-final p {
    color: var(--white) !important;
}

.step-card-final .step-icon-v {
    background: rgba(255, 255, 255, 0.2) !important;
}

.step-card-final .step-icon-v i {
    color: var(--white) !important;
}

.step-icon-v {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-v i {
    font-size: 1.2rem;
    color: var(--primary);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-card strong {
    color: var(--primary);
}

/* ============================================
   BOOKING CALENDAR SECTION
   ============================================ */
.booking {
    background: var(--light);
}

.booking-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(27, 94, 32, 0.08);
}

/* Step Progress Indicators */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
    gap: 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8e8e8;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-indicator.active .step-number {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.step-indicator.completed .step-number {
    background: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.step-indicator.active .step-label {
    color: var(--primary);
    font-weight: 700;
}

.step-indicator.completed .step-label {
    color: var(--primary-light);
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e8e8e8;
    margin: 0 8px;
    margin-bottom: 22px;
    max-width: 60px;
    min-width: 30px;
}

/* Error Message */
.booking-error {
    background: #fff3f3;
    border: 1px solid #ffcdd2;
    color: #c62828;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    max-height: 0;
    padding: 0 16px;
    margin-bottom: 0;
    overflow: hidden;
}

.booking-error.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    max-height: 60px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.booking-error i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Booking Steps */
.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeInStep 0.4s ease;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Booking Type Toggle */
.booking-type-toggle {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.booking-type-btn {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.booking-type-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.booking-type-btn.active {
    border-color: var(--primary);
    background: rgba(27, 94, 32, 0.05);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.12);
}

.booking-type-btn i {
    font-size: 1.2rem;
}

/* Calendar Styles */
.booking-calendar {
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--primary);
    color: var(--white);
}

.calendar-month-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.calendar-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 12px;
    background: var(--white);
}

.calendar-day-name {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    padding: 8px 4px;
    letter-spacing: 0.5px;
}

.calendar-day {
    text-align: center;
    padding: 10px 4px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.calendar-day:hover:not(.disabled):not(.other-month) {
    background: rgba(27, 94, 32, 0.08);
    color: var(--primary);
}

.calendar-day.other-month {
    color: #d0d0d0;
    cursor: default;
}

.calendar-day.disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.calendar-day.past {
    color: #ccc;
    text-decoration: line-through;
}

.calendar-day.weekend {
    color: var(--primary);
    font-weight: 600;
}

.calendar-day.weekday-available {
    color: var(--text);
}

.calendar-day.today {
    font-weight: 700;
    color: var(--primary);
}

.calendar-day.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

.calendar-day.selected {
    background: var(--primary) !important;
    color: var(--white) !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.calendar-day.selected::after {
    display: none;
}

.today-dot {
    display: none;
}

.weekend-label {
    display: block;
    font-size: 0.55rem;
    color: var(--primary-light);
    margin-top: 1px;
    line-height: 1;
    font-weight: 700;
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px 16px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.today-legend {
    background: var(--white);
    border: 2px solid var(--primary);
}

.selected-legend {
    background: var(--primary);
}

.weekend-legend {
    background: var(--primary-light);
}

.weekday-legend {
    background: #7986CB;
}

/* Selected Date Display */
.selected-date-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: #f5f5f5;
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 16px;
}

.selected-date-display i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.selected-date-display .has-date {
    color: var(--primary);
    font-weight: 600;
}

.date-slot-info {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 4px;
}

.date-slot-info.weekend-info {
    background: rgba(76, 175, 80, 0.12);
    color: var(--primary);
}

.date-slot-info.evening-info {
    background: rgba(121, 134, 203, 0.15);
    color: #5C6BC0;
}

/* Step Content Header */
.step-content-header {
    text-align: center;
    margin-bottom: 28px;
}

.step-content-header i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.step-content-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin: 0 0 8px 0;
}

.step-content-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Time Slots */
.time-slots-container {
    margin-top: 8px;
}

.time-slot-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 10px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.time-slot-type.evening {
    background: rgba(121, 134, 203, 0.1);
    border-color: rgba(121, 134, 203, 0.25);
    color: #5C6BC0;
}

.time-slot-type i {
    font-size: 1rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}

.time-slot-btn {
    padding: 16px 12px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.time-slot-btn i {
    font-size: 1.3rem;
    color: var(--primary-light);
}

.time-slot-btn:hover {
    border-color: var(--primary-light);
    background: rgba(27, 94, 32, 0.03);
    transform: translateY(-2px);
}

.time-slot-btn.selected {
    border-color: var(--primary);
    background: rgba(27, 94, 32, 0.06);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.15);
}

.time-slot-btn.selected i {
    color: var(--primary);
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--primary-light);
    font-size: 0.85rem;
}

.form-group .required {
    color: #e53935;
    font-size: 0.8rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text);
    transition: all 0.3s ease;
    background: var(--white);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

/* Confirmation Details */
.confirm-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.confirm-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #f8faf8;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.confirm-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(27, 94, 32, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.confirm-icon i {
    color: var(--primary);
    font-size: 1rem;
}

.confirm-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.confirm-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.confirm-value {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 600;
}

/* Booking Actions */
.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.btn-whatsapp-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-book:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-book i {
    font-size: 1.3rem;
}

.btn-reset-booking {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset-booking:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

/* Step Navigation Buttons */
.booking-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.booking-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-nav-btn.prev {
    background: #f0f0f0;
    color: var(--text);
}

.booking-nav-btn.prev:hover {
    background: #e0e0e0;
}

.booking-nav-btn.next {
    background: var(--primary);
    color: var(--white);
    margin-left: auto;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.25);
}

.booking-nav-btn.next:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.35);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--dark);
    color: var(--white);
}

.testimonials .section-subtitle {
    color: var(--primary-light);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 50px 40px;
    text-align: center;
}

.testimonial-stars {
    margin-bottom: 24px;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1.1rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--dark-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

.author-avatar i {
    font-size: 1.2rem;
    color: var(--primary-light);
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--primary-light);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
}

.testimonial-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--dark-3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(135deg, var(--dark), var(--primary-dark) 58%, var(--wood));
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        radial-gradient(ellipse at 30% 50%, rgba(79, 143, 91, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse at 76% 50%, rgba(207, 226, 207, 0.15) 0%, transparent 60%);
    background-size: 76px 76px, 76px 76px, auto, auto;
}

.cta-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--light);
}

.contact-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* WhatsApp Contact Cards */
.contact-whatsapp-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    grid-column: 1 / -1;
}

.whatsapp-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 32px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: var(--radius);
    border: 1px solid rgba(79, 143, 91, 0.18);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.whatsapp-contact-card:hover {
    border-color: rgba(37, 211, 102, 0.45);
    box-shadow: 0 18px 50px rgba(6, 20, 10, 0.14);
    transform: translateY(-5px);
}

.wa-card-icon {
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-card-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.wa-card-info {
    flex: 1;
}

.wa-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 2px;
}

.wa-card-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.wa-card-badge {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(37, 211, 102, 0.12);
    color: #167C3A;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wa-card-arrow {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.wa-card-arrow i {
    color: var(--text-light);
    transition: var(--transition);
}

.whatsapp-contact-card:hover .wa-card-arrow {
    background: var(--green);
}

.whatsapp-contact-card:hover .wa-card-arrow i {
    color: var(--white);
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(79, 143, 91, 0.16);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Social Links */
.contact-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-social h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
}

.social-links-large {
    display: flex;
    gap: 16px;
}

.social-link-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(79, 143, 91, 0.16);
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: center;
}

.social-link-card i {
    font-size: 2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.social-link-card span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
}

.social-link-card small {
    font-size: 0.8rem;
    color: var(--text-light);
}

.social-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.social-link-card:hover i {
    color: var(--primary);
}

/* Contact Map */
.contact-map {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(79, 143, 91, 0.18);
    box-shadow: var(--shadow);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--dark), #041008);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
}

.footer-logo .logo-main {
    font-size: 1.3rem;
}

.footer-logo .logo-sub {
    font-size: 0.6rem;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-contact ul li i {
    color: var(--primary-light);
    width: 16px;
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-social a i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   BACK TO TOP & WHATSAPP FLOAT
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    padding: 14px 24px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.wa-float-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    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); }
}

/* ============================================
   LIGHTBOX GALLERY
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.2rem;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.1rem;
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-content {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.lightbox-image-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    margin: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.lightbox-image-container.transitioning {
    opacity: 0;
    transform: scale(0.95);
}

.lightbox-img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    display: block;
}

.lightbox-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f2b14, #1a3d20);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--primary-light);
}

.lightbox-placeholder i {
    font-size: 4rem;
    opacity: 0.5;
}

.lightbox-placeholder span {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

.lightbox-info {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 80px 20px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    pointer-events: none;
}
.lightbox-info > * {
    pointer-events: auto;
}

.lightbox-category {
    display: inline-block;
    padding: 4px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.lightbox-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    line-height: 1.6;
}

.lightbox-counter {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 2px;
}

/* Portfolio item click hint */
.portfolio-item {
    cursor: pointer;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.portfolio-item:hover::after {
    opacity: 1;
}

/* ============================================
   ANIMATIONS (AOS-like)
   ============================================ */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-grid {
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid-new {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calc-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .calc-result {
        grid-column: 1 / -1;
        text-align: left;
    }

    .calc-addon {
        grid-template-columns: 1fr auto;
    }

    .calc-addon .calc-result {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    /* Mobile Nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-cta {
        margin-top: 20px;
        text-align: center !important;
    }

    .hamburger {
        display: flex;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .section-title {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-img-placeholder {
        height: 250px;
    }

    /* Calculator */
    .calc-section {
        padding: 24px 20px;
    }

    .calc-row {
        grid-template-columns: 1fr;
    }

    .calc-result {
        text-align: left;
    }

    .calc-addon {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .calc-addon .calc-result {
        text-align: left;
    }

    .grand-total-amount {
        font-size: 2.2rem;
    }

    .calc-grand-total {
        padding: 30px 20px;
    }

    /* Process */
    .process-line {
        left: 24px;
    }

    .step-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 2rem;
    }

    /* Contact */
    .contact-grid-new {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        flex-direction: column;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Booking Calendar */
    .booking-wrapper {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .booking-progress {
        margin-bottom: 24px;
    }

    .step-number {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .step-line {
        max-width: 40px;
        min-width: 20px;
    }

    .booking-type-toggle {
        flex-direction: column;
        gap: 8px;
    }

    .booking-type-btn {
        padding: 14px 16px;
    }

    .calendar-grid {
        padding: 8px;
    }

    .calendar-day {
        padding: 8px 2px;
        font-size: 0.8rem;
    }

    .calendar-legend {
        gap: 12px;
        flex-wrap: wrap;
    }

    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .time-slot-btn {
        padding: 12px 8px;
        font-size: 0.9rem;
    }

    .confirm-item {
        padding: 12px 14px;
        gap: 12px;
    }

    .confirm-icon {
        width: 36px;
        height: 36px;
    }

    .booking-nav-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .btn-whatsapp-book {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    /* Lightbox */
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .lightbox-content {
        width: 95%;
    }

    .lightbox-placeholder {
        height: 280px;
    }

    .lightbox-title {
        font-size: 1.2rem;
    }

    .lightbox-desc {
        font-size: 0.85rem;
    }

    /* Float buttons */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
    }

    .wa-float-text {
        font-size: 0.8rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 4px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .portfolio-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .whatsapp-contact-card {
        padding: 16px 20px;
    }

    .wa-card-icon {
        width: 48px;
        height: 48px;
    }

    .wa-card-icon i {
        font-size: 1.4rem;
    }

    .wa-card-info h3 {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-float {
        padding: 10px 16px;
    }

    .wa-float-text {
        display: none;
    }

    .whatsapp-float {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
    }
}

/* ============================================
   Utility classes (extracted from inline styles)
   ============================================ */

/* Hide elements while keeping them accessible to screen readers */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Generic hidden helper (replaces inline style="display:none") */
.is-hidden {
    display: none !important;
}

/* Google Maps iframe (replaces inline style on <iframe>) */
.contact-map-iframe {
    border: 0;
    border-radius: 12px;
    display: block;
    width: 100%;
}

/* ==============================================
   PRODUK Section (Firestore-driven)
   ============================================== */
.produk {
    background:
        radial-gradient(circle at 12% 16%, rgba(79, 143, 91, 0.14), transparent 28%),
        var(--cream);
}
.produk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.produk-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(79, 143, 91, 0.18);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.produk-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 143, 91, 0.38);
    box-shadow: var(--shadow-lg);
}
.produk-card-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.produk-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #4F8F5B, var(--primary));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 5px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    z-index: 2;
    text-transform: uppercase;
}
.produk-card-leadtime {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--primary-dark);
    background: rgba(207, 226, 207, 0.70);
    border: 1px solid rgba(79, 143, 91, 0.28);
    padding: 6px 10px;
    border-radius: 999px;
    margin-top: 2px;
    font-weight: 600;
    align-self: flex-start;
}
.produk-card-leadtime i { font-size: 0.9rem; }
.produk-preorder-notice {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px auto 0;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--primary-dark);
    border: 1px solid rgba(79, 143, 91, 0.28);
    border-radius: 999px;
    font-size: 0.95rem;
    max-width: 720px;
    text-align: center;
    line-height: 1.45;
}
.produk-preorder-notice i {
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}
.produk-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
}
.produk-card-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: #fff;
    font-size: 3rem;
}
.produk-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.produk-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}
.produk-card-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.produk-card-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 8px;
}
.produk-card-tempah-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
    width: 100%;
    box-sizing: border-box;
}
.produk-card-tempah-btn:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.35);
}
.produk-card-tempah-btn i {
    font-size: 1.1rem;
}

/* ==============================================
   AKSESORI add-on grid (inside calculator)
   ============================================== */
.aksesori-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.aksesori-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}
.aksesori-card:hover {
    border-color: #1B5E20;
}
.aksesori-card.selected {
    border-color: #1B5E20;
    background: #f0fdf4;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.12);
}
.aksesori-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 6px;
    background: #f3f4f6;
}
.aksesori-card-img-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #9ca3af;
    font-size: 2rem;
    border-radius: 6px;
}
.aksesori-card-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.92rem;
    line-height: 1.3;
}
.aksesori-card-price {
    font-weight: 700;
    color: #16a34a;
    font-size: 0.95rem;
}
.aksesori-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.aksesori-toggle {
    flex: 1;
    background: #1B5E20;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
}
.aksesori-toggle.added {
    background: #b91c1c;
}
.aksesori-shopee {
    color: #ee4d2d;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 4px;
    transition: background 0.2s;
}
.aksesori-shopee:hover {
    background: #fff5f0;
}

/* ---- Portfolio Pagination ---- */
.portfolio-pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #1B5E20;
    background: #fff;
    color: #1B5E20;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.95rem;
}
.portfolio-pagination-btn:hover {
    background: #1B5E20;
    color: #fff;
    transform: translateY(-2px);
}
.portfolio-pagination-btn.active {
    background: #1B5E20;
    color: #fff;
    box-shadow: 0 4px 10px rgba(27, 94, 32, 0.3);
}
.portfolio-pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #ccc;
    color: #999;
}
.portfolio-pagination-btn:disabled:hover {
    background: #fff;
    color: #999;
    transform: none;
}

