﻿/* ============================================================
   Langit Biru Child Theme - Custom Styles
   CSS Kustom untuk komponen yang tidak tercakup Tailwind
   ============================================================ */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --primary-blue: #2988BC;
    --primary-dark: #2F496E;
    --accent-coral: #ED8C72;
    --accent-coral-hover: #d47860;
    --accent-teal: #1995AD;
    --cream: #F4EADE;
    --orange: #ED8C72;
    --orange-hover: #d47860;
    --nav-dark: #2b2b2b;
    --logo-bg: #1c1c1c;
    --white: #ffffff;
    --font-display: 'Raleway', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.pf-section {
    padding: 0; /* Backgrounds handle padding */
    font-family: var(--font-body);
}

.pf-header {
    text-align: left;
    padding: 80px 5% 40px;
    background: var(--white);
}

.pf-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.pf-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.pf-judul {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #2F496E;
    line-height: 1.2;
    margin: 0 0 20px;
}

.pf-judul span {
    color: var(--orange);
}

.pf-sub-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.pf-zigzag {
    width: 100%;
}

.pf-zigzag--bg-white {
    background: #ffffff;
}

.pf-zigzag--bg-gray {
    background: #f4f5f7; /* Industrial light gray */
}

.pf-zigzag-inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
    min-height: 600px;
}

.pf-zigzag-inner--reverse {
    flex-direction: row-reverse;
}

.pf-zigzag-text {
    flex: 1;
    padding: 80px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pf-separator {
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin-bottom: 30px;
}

.pf-zigzag-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #2F496E;
    text-transform: uppercase;
    margin: 0 0 24px;
    line-height: 1.2;
}

.pf-zigzag-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 20px;
}

.pf-zigzag-desc:last-child {
    margin-bottom: 0;
}

.pf-zigzag-img {
    flex: 0 0 55%; /* ~60% width for image */
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.pf-zigzag-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .pf-zigzag-inner,
    .pf-zigzag-inner--reverse {
        flex-direction: column-reverse; /* Always text below image on mobile, or text above image */
        padding: 0;
    }
    
    .pf-zigzag-img {
        flex: auto;
        width: 100%;
        height: 400px;
        min-height: 400px;
    }
    
    .pf-zigzag-text {
        padding: 50px 5%;
    }
}

/* ============================================================
   TENTANG KAMI SECTION
   ============================================================ */
.lb-tentang-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    overflow: hidden;
}

.lb-tentang-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lb-tentang-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(47, 73, 110, 0.92) 0%,
        rgba(41, 136, 188, 0.55) 50%,
        rgba(25, 149, 173, 0.45) 100%
    );
}

.lb-tentang-konten {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
    width: 100%;
}

.lb-tentang-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.lb-tentang-judul {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.lb-tentang-deskripsi {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 40px;
}

.lb-tentang-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.lb-tentang-stat-item {
    flex: 1;
    min-width: 140px;
}

.lb-tentang-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.lb-tentang-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.lb-tentang-stat-line {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--orange);
    margin-top: 16px;
}

.lb-tentang-ceo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.lb-tentang-ttd {
    max-width: 195px;
    height: auto;
}

.lb-tentang-ceo-info {
    display: flex;
    flex-direction: column;
}

.lb-tentang-ceo-info strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
}

.lb-tentang-ceo-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .lb-tentang-stats {
        gap: 20px;
    }
    
    .lb-tentang-stat-item {
        min-width: 120px;
    }
    
    .lb-tentang-ceo {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.lb-cta-strip {
    background: linear-gradient(135deg, #2F496E 0%, #1995AD 100%);
    padding: 70px 5%;
}

.lb-cta-strip-dalam {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.lb-cta-strip-teks {
    flex: 1;
    min-width: 300px;
}

.lb-cta-strip-teks h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 12px 0;
}

.lb-cta-strip-teks p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.lb-cta-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--orange);
    color: var(--white) !important;
    text-decoration: none !important;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 18px 36px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lb-cta-strip-btn:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    text-decoration: none !important;
}

.lb-cta-strip-btn i {
    transition: transform 0.3s ease;
}

.lb-cta-strip-btn:hover i {
    transform: translateX(5px);
}

/* ============================================================
   FOOTER STYLES
   Palet: #2F496E (dark) | #2988BC (mid) | #1995AD (teal)
          #ED8C72 (coral/accent) | #F4EADE (cream)
   ============================================================ */

/* === WRAPPER UTAMA === */
.lb-footer {
    background: var(--primary-dark);
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}

.lb-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(25, 149, 173, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 10% 80%, rgba(41, 136, 188, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* === TOP BAR === */
.lb-footer-topbar {
    background: rgba(0, 0, 0, 0.25);
    padding: 28px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.lb-footer-topbar-dalam {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.lb-footer-logo {
    flex: 0 0 auto;
    margin-right: auto;
    padding-right: 40px;
}

.lb-footer-logo img {
    max-width: 160px;
    height: auto;
    filter: brightness(1.05);
}

.lb-footer-topbar-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 40px;
    flex-shrink: 0;
}

.lb-footer-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

.lb-footer-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(237, 140, 114, 0.15);
    border: 1px solid rgba(237, 140, 114, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lb-footer-info-item:hover .lb-footer-info-icon {
    background: rgba(237, 140, 114, 0.28);
}

.lb-footer-info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-coral);
}

.lb-footer-info-teks {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lb-footer-info-teks strong {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.lb-footer-info-teks span,
.lb-footer-info-teks a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.25s ease;
}

.lb-footer-info-teks a:hover {
    color: var(--accent-coral);
}

/* === GARIS PEMISAH === */
.lb-footer-garis {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 0 5%;
}

/* === MAIN AREA 3 Kolom === */
.lb-footer-main {
    padding: 60px 5% 50px;
    position: relative;
}

.lb-footer-main-dalam {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.lb-footer-kolom {
    text-align: left;
}

.lb-footer-kolom--tentang {
    grid-column: span 1;
}

.lb-footer-kolom-judul {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 18px 0;
    padding-bottom: 0;
    border-bottom: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.lb-footer-kolom-judul::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--accent-coral);
    margin-top: 10px;
    border-radius: 2px;
}

.lb-footer-kolom-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 22px;
}

/* === SOSIAL MEDIA === */
.lb-footer-sosmed-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lb-footer-sosmed {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.lb-footer-sosmed-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lb-footer-sosmed-icon:hover {
    background: var(--accent-coral);
    border-color: var(--accent-coral);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(237, 140, 114, 0.35);
}

.lb-footer-sosmed-icon svg {
    width: 17px;
    height: 17px;
    color: var(--white);
}

            /* === NAV LIST dengan chevron === */
.lb-footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lb-footer-nav-list li {
    margin-bottom: 10px;
}

.lb-footer-nav-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.lb-footer-nav-list li a::before {
    content: '\203A';
    font-size: 1.1rem;
    color: var(--accent-coral);
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.lb-footer-nav-list li a:hover {
    color: var(--cream);
    padding-left: 4px;
}

.lb-footer-nav-list li a:hover::before {
    transform: translateX(3px);
}

/* Footer nav icon - untuk kolom Artikel */
.lb-footer-nav-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-right: 2px;
}

/* Override ::before untuk kolom Artikel yang sudah punya SVG icon */
.lb-footer-kolom:last-child .lb-footer-nav-list li a::before {
    display: none;
}

/* === COPYRIGHT BAR === */
.lb-footer-copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 28px 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.lb-footer-copyright-inner {
    display: inline-block;
    background: var(--accent-coral);
    padding: 12px 40px;
    border-radius: 50px;
    max-width: 900px;
    width: 90%;
}

.lb-footer-copyright p {
    margin: 0;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    font-family: var(--font-display);
    font-weight: 500;
}

.lb-footer-copyright strong {
    color: var(--white);
    font-weight: 700;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .lb-footer-topbar-divider {
        margin: 0 24px;
    }
}

@media (max-width: 992px) {
    .lb-footer-main-dalam {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .lb-footer-kolom--tentang {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .lb-footer-topbar-dalam {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .lb-footer-logo {
        margin-right: 0;
        padding-right: 0;
    }

    .lb-footer-topbar-divider {
        display: none;
    }

    .lb-footer-info-item {
        width: 100%;
    }

    .lb-footer-main-dalam {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lb-footer-kolom--tentang {
        grid-column: span 1;
    }

    .lb-footer-copyright-inner {
        padding: 12px 24px;
        border-radius: 30px;
    }

    .lb-footer-copyright p {
        font-size: 0.78rem;
    }
}


/* ============================================================
   STATISTIK SECTION (Bg Orange)
   ============================================================ */
.bg-orange {
    background-color: var(--orange);
}

.divide-white\/35 > :not([hidden]) ~ :not([hidden]) {
    border-color: rgba(255, 255, 255, 0.35);
}

.border-white\/15 {
    border-color: rgba(255, 255, 255, 0.15);
}

.text-white\/90 {
    color: rgba(255, 255, 255, 0.9);
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   ADDITIONAL UTILITIES
   ============================================================ */
.text-orange {
    color: var(--orange);
}

.bg-white {
    background-color: var(--white);
}

.bg-\[\#fafafa\] {
    background-color: #fafafa;
}

.bg-\[\#1a2b4b\] {
    background-color: #2F496E;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Remove default button styles */
button {
    font-family: inherit;
}

/* WordPress core alignment */
.alignwide {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    max-width: 100%;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.floating-btn svg {
    width: 26px;
    height: 26px;
}

/* WhatsApp Button */
.floating-btn--whatsapp {
    background: #25D366;
    color: white;
}

.floating-btn--whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
    text-decoration: none;
}

/* Back to Top Button */
.floating-btn--backtotop {
    background: var(--orange);
    color: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-btn--backtotop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn--backtotop:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
}

/* Pulse animation for WhatsApp */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-btn--whatsapp {
    animation: pulse-whatsapp 2s infinite;
}

/* Responsive floating buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* ============================================================
   PARALLAX EFFECT FOR BRANDING TOKO & FASAD IMAGE
   ============================================================ */
.pf-parallax-container {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.pf-parallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Taller than container for parallax movement */
    object-fit: cover;
    will-change: transform;
}

@media (max-width: 768px) {
    .pf-parallax-img {
        height: 100%;
        transform: none !important;
    }
}

/* ============================================================
   KONTAK PAGE STYLES
   ============================================================ */
/* Contact page navbar - gray background for visibility */
body.page-id-kontak .navbar,
body.page-kontak .navbar {
    background: rgba(128, 128, 128, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lb-kontak-seksi {
    padding: 80px 5%;
    background: #eef5fb; /* Light blue background */
    font-family: var(--font-body);
}

.lb-kontak-dalam {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.lb-kontak-area-form {
    padding-right: 20px;
}

.lb-kontak-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.lb-kontak-judul {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #2F496E;
    line-height: 1.2;
    margin: 0 0 30px 0;
}

.lb-formulir {
    margin-bottom: 30px;
}

.lb-form-baris {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.lb-form-grup {
    margin-bottom: 20px;
}

.lb-form-grup label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.lb-form-grup input,
.lb-form-grup textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    color: #333;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lb-form-grup input:focus,
.lb-form-grup textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 96, 26, 0.1);
}

.lb-form-grup textarea {
    min-height: 150px;
    resize: vertical;
}

.lb-tombol-kirim {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 36px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.lb-tombol-kirim:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

.lb-tombol-kirim i {
    font-size: 0.9rem;
}

/* Contact Info */
.lb-info-kontak {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.lb-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.lb-info-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 96, 26, 0.1);
    color: var(--orange);
    border-radius: 8px;
    font-size: 1rem;
    flex-shrink: 0;
}

.lb-info-item span {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Contact Photo */
.lb-kontak-foto {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

.lb-kontak-foto img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

/* Google Maps */
.lb-maps-section {
    width: 100%;
}

.lb-maps-frame {
    display: block;
    width: 100%;
    border: none;
}

/* Notifications */
.lb-notif {
    padding: 16px 20px;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lb-notif--sukses {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.lb-notif--gagal {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 992px) {
    .lb-kontak-dalam {
        grid-template-columns: 1fr;
    }
    
    .lb-kontak-area-form {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .lb-form-baris {
        grid-template-columns: 1fr;
    }
    
    .lb-kontak-seksi {
        padding: 50px 5%;
    }
}




/* ============================================================
   BATCH2-FIX â€” carousel overflow + padding seragam
   ============================================================ */

/* FIX 3: Carousel tampil 3 foto tanpa meluber */
.lb-carousel-track-wrap {
    overflow: hidden !important;
    width: 100% !important;
}
.lb-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

/* FIX 4: Seragamkan max-width semua konten utama */
.lb-galeri-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}


/* === LOADING FORM KONTAK === */
.lb-form-loading { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 20px; margin-top: 16px; background: rgba(255,255,255,0.92); border: 1px solid #e0e0e0; border-radius: 6px; }
.lb-form-loading img { width: 60px; height: 60px; }
.lb-form-loading p { font-family: var(--font-display); font-size: 0.9rem; color: #2F496E; margin: 0; font-weight: 600; }

/* === SLIDER LOGO PARTNER === */
.lb-partner-section { background: #ffffff; padding: 70px 5%; overflow: hidden; }
.lb-partner-dalam { max-width: 1200px; margin: 0 auto; }
.lb-partner-header { text-align: center; margin-bottom: 40px; }
.lb-partner-label { font-family: var(--font-display, 'Raleway', sans-serif); font-size: 13px; font-weight: 700; color: #ED8C72; text-transform: uppercase; letter-spacing: 3px; margin: 0 0 8px; }
.lb-partner-judul { font-family: var(--font-display, 'Raleway', sans-serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: #2F496E; margin: 0; }

.lb-partner-track-wrap { overflow: hidden; width: 100%; position: relative; }
.lb-partner-track-wrap::before,
.lb-partner-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.lb-partner-track-wrap::before { left: 0; background: linear-gradient(to right, #ffffff, transparent); }
.lb-partner-track-wrap::after  { right: 0; background: linear-gradient(to left, #ffffff, transparent); }

.lb-partner-track { display: flex; align-items: center; gap: 0; width: max-content; animation: lb-partner-scroll 60s linear infinite; }
.lb-partner-track:hover { animation-play-state: paused; }

.lb-partner-item { flex-shrink: 0; width: 210px; height: 140px; display: flex; align-items: center; justify-content: center; background: transparent; border-radius: 0; padding: 0; box-shadow: none; transition: transform 0.3s ease; }
.lb-partner-item:hover { box-shadow: none; transform: translateY(-2px); }
.lb-partner-item img { max-width: 100%; max-height: 140px; width: auto; height: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.65; transition: filter 0.3s ease, opacity 0.3s ease; }
.lb-partner-item:hover img { filter: grayscale(0%); opacity: 1; }


@keyframes lb-partner-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .lb-partner-item { width: 140px; height: 100px; padding: 0; }
    .lb-partner-track { gap: 0; }
}