/* ==========================================================================
   GADUT MEBEL - PREMIUM FURNITURE & PHOTO GALLERY LANDING PAGE
   Optimized for High-DPI Mobile Screens, Crisp Typography & Ultra-Fast UX
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-wood: #7A3E1D;
    --primary-hover: #914B24;
    --dark-teak: #24140D;
    --accent-gold: #B8860B;
    --accent-gold-soft: #FAF2DF;
    --wa-green: #25D366;
    --wa-green-hover: #1EBE5D;
    
    /* Neutrals & Surfaces */
    --warm-bg: #FAF7F2;
    --warm-card: #FFFFFF;
    --warm-surface: #F3ECE2;
    --text-dark: #1E120B;
    --text-body: #4A3E36;
    --text-muted: #7D6F66;
    --border-color: #E6DDD3;
    --border-light: #F0E9E1;
    
    /* Shadows */
    --shadow-xs: 0 2px 5px rgba(36, 20, 13, 0.04);
    --shadow-sm: 0 4px 12px rgba(36, 20, 13, 0.06);
    --shadow-md: 0 8px 22px rgba(36, 20, 13, 0.08);
    --shadow-wa: 0 6px 16px rgba(37, 211, 102, 0.28);

    /* Radii */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.22s ease-in-out;
}

/* RESET & BASE TYPOGRAPHY */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--warm-bg);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.25;
    letter-spacing: -0.015em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-success { color: var(--wa-green); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    border-radius: var(--radius-xs);
    padding: 11px 20px;
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary-lg {
    background: var(--dark-teak);
    color: #FFF;
    padding: 13px 24px;
    font-size: 0.96rem;
}
.btn-primary-lg:hover {
    background: var(--primary-wood);
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-wa {
    background: var(--wa-green);
    color: #FFF !important;
    padding: 9px 16px;
    font-size: 0.88rem;
}
.btn-wa:hover {
    background: var(--wa-green-hover);
    transform: translateY(-1px);
}

.btn-wa-lg {
    background: var(--wa-green);
    color: #FFF !important;
    padding: 13px 26px;
    font-size: 0.98rem;
    font-weight: 700;
    box-shadow: var(--shadow-wa);
}
.btn-wa-lg:hover {
    background: var(--wa-green-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--dark-teak);
    border: 1px solid var(--border-color);
}
.btn-outline:hover {
    border-color: var(--primary-wood);
    color: var(--primary-wood);
    background: #FFF;
}

.btn-outline-sm {
    padding: 8px 12px;
    font-size: 0.82rem;
    border-radius: var(--radius-xs);
    background: var(--warm-surface);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}
.btn-outline-sm:hover {
    border-color: var(--primary-wood);
    color: var(--primary-wood);
    background: #FFF;
}

.btn-wa-sm {
    padding: 8px 12px;
    font-size: 0.82rem;
    border-radius: var(--radius-xs);
    background: var(--wa-green);
    color: #FFF !important;
    font-weight: 700;
}
.btn-wa-sm:hover {
    background: var(--wa-green-hover);
    transform: translateY(-1px);
}

/* ==========================================================================
   TOP BAR & NAVIGATION (PERFECT HORIZONTAL ALIGNMENT)
   ========================================================================== */
.top-bar {
    background: var(--dark-teak);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    padding: 8px 0;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}
.top-bar-location {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}
.top-contact a {
    color: #FFF;
    font-weight: 600;
}
.top-contact a:hover {
    color: var(--accent-gold);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    min-height: 66px;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}
.brand-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--dark-teak);
    color: var(--accent-gold);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.brand-text h1 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-teak);
    line-height: 1.1;
    margin: 0;
    white-space: nowrap;
    letter-spacing: -0.02em;
}
.brand-text span {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: var(--primary-wood);
    display: block;
    margin-top: 1px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.nav-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark);
    padding: 6px 0;
    white-space: nowrap;
    display: inline-block;
    line-height: 1.2;
    position: relative;
    transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-wood);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-wood);
    transition: width 0.22s ease;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}
.nav-cta {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: var(--radius-xs);
    white-space: nowrap;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.35rem;
    color: var(--dark-teak);
    cursor: pointer;
    padding: 4px;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
section {
    padding: 60px 0;
}
.section-header {
    margin-bottom: 32px;
}
.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: var(--primary-wood);
    margin-bottom: 8px;
    background: var(--warm-surface);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}
.section-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--dark-teak);
    margin-bottom: 10px;
}
.section-description {
    font-size: 0.94rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.55;
}

/* ==========================================================================
   HERO SECTION
/* ==========================================================================
   HERO SECTION (LIGHT BLUR OVERLAY)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 60px 0 70px 0;
    overflow: hidden;
    background: #FAF8F5;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}
.hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    filter: brightness(0.92) contrast(1.02);
    transform: scale(1.0);
}
.hero-light-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(248, 244, 238, 0.25) 50%, rgba(255, 255, 255, 0.50) 100%);
}
.hero-container {
    position: relative;
    z-index: 2;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
}
.hero-content {
    background: rgba(255, 255, 255, 0.88);
    padding: 30px 32px 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark-teak);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 14px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xs);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--dark-teak);
    line-height: 1.2;
    margin-bottom: 14px;
}
.hero-title span {
    color: var(--primary-wood);
}
.hero-description {
    font-size: 0.96rem;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.6;
}
.hero-usps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}
.usp-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.85);
    padding: 8px 12px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual-card {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    border: 3px solid #FFF;
}
.hero-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* ==========================================================================
   PHOTO GALLERY SECTION
   ========================================================================== */
.gallery-section {
    background-color: var(--warm-bg);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.filter-btn {
    background: #FFF;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.84rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}
.filter-btn:hover {
    border-color: var(--primary-wood);
    color: var(--primary-wood);
}
.filter-btn.active {
    background: var(--dark-teak);
    color: #FFF;
    border-color: var(--dark-teak);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}
.gallery-item {
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery-item.hide {
    display: none;
}

.gallery-card {
    background: var(--warm-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gallery-img-box {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #EDE6DC;
}
.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.gallery-card:hover .gallery-thumb {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(36, 20, 13, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}
.gallery-zoom-btn {
    background: #FFF;
    color: var(--dark-teak);
    border: none;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.gallery-zoom-btn:hover {
    background: var(--dark-teak);
    color: #FFF;
}

.card-badge-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-wood);
    font-weight: 700;
    font-size: 0.68rem;
    padding: 3px 7px;
    border-radius: var(--radius-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-xs);
}

.gallery-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.gallery-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-teak);
    margin-bottom: 5px;
    line-height: 1.3;
}
.gallery-brief-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 12px;
    flex-grow: 1;
}

.gallery-card-actions {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

/* CUSTOM REQUEST BANNER */
.gallery-custom-banner {
    background: var(--dark-teak);
    border-radius: var(--radius-sm);
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.gallery-custom-banner h3 {
    color: #FFF;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.gallery-custom-banner p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background: #FFF;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.service-card {
    background: var(--warm-bg);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.service-card:hover {
    border-color: var(--primary-wood);
}
.service-icon {
    width: 42px;
    height: 42px;
    background: var(--warm-surface);
    color: var(--primary-wood);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.service-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark-teak);
    margin-bottom: 6px;
}
.service-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   ABOUT / WORKSHOP SECTION
   ========================================================================== */
.about-section {
    background: var(--warm-surface);
}
.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: center;
}
.about-img-box {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 3px solid #FFF;
}
.about-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}
.about-lead {
    font-size: 0.96rem;
    color: var(--text-body);
    margin-bottom: 20px;
}
.about-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-point-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.point-icon {
    width: 36px;
    height: 36px;
    background: #FFF;
    color: var(--primary-wood);
    border-radius: var(--radius-xs);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.about-point-item h4 {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--dark-teak);
    margin-bottom: 2px;
}
.about-point-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   WORKSHOP PRODUCTION GALLERY SECTION
   ========================================================================== */
.workshop-gallery-section {
    background: #FAFAFA;
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.workshop-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ws-photo-card {
    background: #FFF;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}
.ws-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(43, 29, 19, 0.12);
    border-color: var(--accent-gold);
}
.ws-photo-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #EAE5E0;
}
.ws-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ws-photo-card:hover .ws-photo-img {
    transform: scale(1.06);
}
.ws-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 13, 8, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ws-photo-card:hover .ws-photo-overlay {
    opacity: 1;
    visibility: visible;
}
.ws-zoom-icon {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-teak);
    padding: 10px 18px;
    font-size: 0.86rem;
    font-weight: 700;
    border-radius: 25px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: translateY(6px);
    transition: var(--transition);
}
.ws-photo-card:hover .ws-zoom-icon {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .workshop-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}
@media (max-width: 576px) {
    .workshop-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .ws-zoom-icon {
        padding: 6px 12px;
        font-size: 0.76rem;
    }
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-section {
    background: #FFF;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
.process-card {
    background: var(--warm-bg);
    border-radius: var(--radius-sm);
    padding: 24px 16px;
    position: relative;
    border: 1px solid var(--border-color);
    text-align: center;
}
.step-num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--dark-teak);
    color: #FFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}
.process-icon {
    width: 44px;
    height: 44px;
    margin: 6px auto 10px;
    background: var(--warm-surface);
    color: var(--primary-wood);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.process-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark-teak);
    margin-bottom: 6px;
}
.process-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background: var(--warm-bg);
}
.contact-card {
    background: var(--dark-teak);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    color: #FFF;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}
.contact-info-col h2 {
    color: #FFF;
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.contact-info-col p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
}
.contact-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.c-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.c-item i {
    font-size: 1.1rem;
    margin-top: 2px;
}
.c-item strong {
    display: block;
    font-size: 0.88rem;
    color: #FFF;
}
.c-item p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.cta-direct-box {
    background: #FFF;
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    text-align: center;
    color: var(--text-dark);
}
.cta-direct-box i {
    font-size: 2.2rem;
}
.cta-direct-box h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--dark-teak);
    margin: 6px 0 4px;
}
.cta-direct-box p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.direct-phone-label {
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.direct-phone-label a {
    color: var(--primary-wood);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: #180D08;
    color: rgba(255, 255, 255, 0.75);
    padding: 45px 0 20px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
    gap: 28px;
    margin-bottom: 30px;
}
.footer-col h4 {
    color: #FFF;
    font-size: 0.96rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.84rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover {
    color: var(--accent-gold);
}
.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
.footer-bottom strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ==========================================================================
   FLOATING WA & STICKY MOBILE BAR
   ========================================================================== */
.floating-wa-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
.floating-wa {
    width: 52px;
    height: 52px;
    background: var(--wa-green);
    color: #FFF !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-wa);
    transition: var(--transition);
}
.floating-wa:hover {
    transform: scale(1.06);
}

.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    padding: 8px 12px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
    z-index: 998;
}
.sm-bar-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8px;
    max-width: 440px;
    margin: 0 auto;
}
.sm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 10px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 0.82rem;
    font-family: 'Outfit', sans-serif;
}
.sm-call {
    background: var(--warm-surface);
    color: var(--dark-teak);
    border: 1px solid var(--border-color);
}
.sm-wa {
    background: var(--wa-green);
    color: #FFF !important;
}

/* ==========================================================================
   MODAL / LIGHTBOX
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 8, 4, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-card {
    background: #FFF;
    width: 100%;
    max-width: 740px;
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    position: relative;
    max-height: 88vh;
    overflow-y: auto;
    padding: 24px;
    transform: scale(0.96);
    transition: transform 0.22s ease;
}
.modal-overlay.active .modal-card {
    transform: scale(1);
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--warm-surface);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--dark-teak);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover {
    background: #E53935;
    color: #FFF;
}
.qv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}
.qv-image-container {
    border-radius: var(--radius-xs);
    overflow: hidden;
    background: #EDE6DC;
}
.qv-image-container img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.qv-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-wood);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
    display: inline-block;
}
.qv-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-teak);
    margin-bottom: 10px;
    line-height: 1.25;
}
.qv-desc-wrapper p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}
.btn-modal-wa {
    width: 100%;
    padding: 11px;
    font-size: 0.92rem;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS (PERFECT HIGH-DPI TUNING)
   ========================================================================== */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-main-img { height: 300px; }
    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-img { height: 280px; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    /* Base typography scaling for modern High-DPI screens */
    html { font-size: 15px; }
    section { padding: 38px 0; }
    .container { padding: 0 16px; }

    /* Top bar hidden to maximize mobile screen */
    .top-bar { display: none; }

    /* Mobile Navbar */
    .navbar {
        min-height: 58px;
        padding: 8px 0;
    }
    .brand-logo-icon {
        width: 34px;
        height: 34px;
        font-size: 1.15rem;
    }
    .brand-text h1 {
        font-size: 1.15rem;
    }
    .brand-text span {
        font-size: 0.58rem;
        letter-spacing: 1px;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-actions {
        display: none;
    }

    /* Mobile Drawer */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFF;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 16px 14px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border-color);
        display: none;
    }
    .nav-menu.show {
        display: flex;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: 9px 0;
        font-size: 0.9rem;
        border-bottom: 1px solid var(--border-light);
    }
    .nav-link::after { display: none; }

    /* Hero Section Mobile */
    .hero-section {
        padding: 24px 0 30px 0;
    }
    .hero-content {
        padding: 18px 14px;
        border-radius: var(--radius-sm);
    }
    .hero-badge {
        font-size: 0.72rem;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
    .hero-title {
        font-size: 1.48rem;
        line-height: 1.25;
        margin-bottom: 10px;
        letter-spacing: -0.01em;
    }
    .hero-description {
        font-size: 0.86rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    .hero-usps {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 18px;
    }
    .usp-pill {
        font-size: 0.78rem;
        padding: 6px 8px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 8px;
    }
    .hero-buttons .btn {
        width: 100%;
        padding: 11px 16px;
        font-size: 0.9rem;
    }
    .hero-main-img {
        height: 220px;
        border-radius: var(--radius-xs);
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 22px;
    }
    .section-subtitle {
        font-size: 0.7rem;
        padding: 3px 8px;
        margin-bottom: 6px;
    }
    .section-title {
        font-size: 1.38rem;
        margin-bottom: 6px;
    }
    .section-description {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    /* Gallery Mobile */
    .gallery-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 6px;
        gap: 6px;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .gallery-filters::-webkit-scrollbar { display: none; }
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.78rem;
        flex-shrink: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
    .gallery-img-box {
        height: 200px;
    }
    .gallery-info {
        padding: 12px;
    }
    .gallery-title {
        font-size: 0.96rem;
    }
    .gallery-brief-desc {
        font-size: 0.78rem;
        margin-bottom: 10px;
    }
    .gallery-card-actions {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .gallery-card-actions .btn {
        padding: 7px 8px;
        font-size: 0.78rem;
    }

    .gallery-custom-banner {
        flex-direction: column;
        padding: 20px 16px;
        gap: 14px;
        text-align: center;
    }
    .gallery-custom-banner h3 {
        font-size: 1.15rem;
    }
    .gallery-custom-banner p {
        font-size: 0.8rem;
    }
    .custom-banner-cta {
        width: 100%;
    }
    .custom-banner-cta .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.88rem;
    }

    /* Services & About Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .service-card {
        padding: 16px 14px;
    }
    .service-card h3 {
        font-size: 0.92rem;
    }
    .service-card p {
        font-size: 0.78rem;
    }

    .about-img {
        height: 200px;
    }
    .about-lead {
        font-size: 0.86rem;
        margin-bottom: 14px;
    }
    .about-point-item h4 {
        font-size: 0.88rem;
    }
    .about-point-item p {
        font-size: 0.78rem;
    }

    /* Process Mobile */
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }
    .process-card {
        padding: 18px 10px 14px;
    }
    .process-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        margin: 4px auto 8px;
    }
    .process-card h3 {
        font-size: 0.86rem;
    }
    .process-card p {
        font-size: 0.72rem;
        line-height: 1.35;
    }
    .process-cta .btn {
        width: 100%;
        padding: 11px 16px;
        font-size: 0.9rem;
    }

    /* Contact Mobile */
    .contact-card {
        padding: 20px 16px;
    }
    .contact-info-col h2 {
        font-size: 1.35rem;
    }
    .contact-info-col p {
        font-size: 0.82rem;
        margin-bottom: 16px;
    }
    .c-item strong {
        font-size: 0.82rem;
    }
    .c-item p {
        font-size: 0.78rem;
    }
    .cta-direct-box {
        padding: 18px 14px;
    }
    .cta-direct-box h3 {
        font-size: 1.02rem;
    }
    .cta-direct-box p {
        font-size: 0.78rem;
    }

    /* Footer Mobile */
    .main-footer {
        padding: 30px 0 16px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    .footer-bottom {
        font-size: 0.76rem;
    }
    .footer-bottom p {
        font-size: 0.76rem;
    }

    /* Floating WA hidden on Mobile (sticky bar handles mobile CTA) */
    .floating-wa-container {
        display: none !important;
    }
    .sticky-mobile-bar {
        display: block;
    }
    body {
        padding-bottom: 54px;
    }

    /* Modal Mobile */
    .modal-card {
        padding: 16px 14px;
        max-height: 90vh;
    }
    .qv-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .qv-image-container img {
        height: 200px;
    }
    .qv-title {
        font-size: 1.12rem;
        margin-bottom: 6px;
    }
    .qv-desc-wrapper p {
        font-size: 0.78rem;
        margin-bottom: 12px;
    }
    .btn-modal-wa {
        padding: 10px;
        font-size: 0.86rem;
    }
}
