/* ══════════════════════════════════════
   GLOBAL FONTS
   Headings  → Roboto (bold/black weights)
   Body/Para → Nunito Sans (clean, readable)
══════════════════════════════════════ */

/* Base body font — Nunito Sans for all readable text */
*, *::before, *::after {
    font-family: 'Nunito Sans', sans-serif !important;
}

/* Headings override — Roboto for all h1–h6 and heading-class elements */
h1, h2, h3, h4, h5, h6,
.load-title,
.about-banner-title,
.about-section-title,
.about-tl-year,
.org-name,
.org-role,
#projectTitle,
#detailName,
.pop-filter-btn,
nav ul li a,
.inquiry-btn,
.inquiry-label,
.load-sub,
.load-tagline,
.about-section-label,
.about-info-label,
.about-text-label,
.about-banner-tag,
.gallery-close-btn,
.detail-close-btn,
.about-close-btn,
.lightbox-close-btn,
.modal-close-btn,
footer p,
.load-red {
    font-family: 'Roboto', sans-serif !important;
}

/* ══════════════════════════════════════
   LOADING SCREEN — Option 2
══════════════════════════════════════ */
@keyframes loadPulse  { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(0.92);opacity:0.6} }
@keyframes loadBar    { 0%{width:0%} 70%{width:100%} 100%{width:100%} }
@keyframes loadFadeUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

#loadingScreen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #080000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}
#loadingScreen.hide {
    opacity: 0;
    pointer-events: none;
}
.load-topbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #b91c1c;
    animation: loadBar 2.5s ease forwards;
}
.load-grid {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(185,28,28,0.05) 0, rgba(185,28,28,0.05) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(0deg,  rgba(185,28,28,0.04) 0, rgba(185,28,28,0.04) 1px, transparent 1px, transparent 60px);
    pointer-events: none;
}
.load-logo-wrap {
    margin-bottom: 20px;
    animation: loadPulse 1.8s ease infinite;
}
.load-logo {
    width: 90px; height: 90px;
    border-radius: 50%;
    border: 3px solid #b91c1c;
    object-fit: cover;
    display: block;
}
.load-title {
    font-family: 'Roboto', sans-serif !important;
    font-size: clamp(1.4rem, 5vw, 2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.05em;
    margin: 0 0 6px;
    text-transform: uppercase;
    animation: loadFadeUp 0.6s ease both;
    text-align: center;
    padding: 0 16px;
}
.load-red { color: #b91c1c; }
.load-tagline {
    font-family: 'Nunito Sans', sans-serif !important;
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    font-style: italic;
    margin: 0 0 22px;
    animation: loadFadeUp 0.6s 0.15s ease both;
    text-align: center;
    padding: 0 16px;
}
.load-bar-wrap {
    width: min(220px, 60vw);
    height: 2px;
    background: rgba(255,255,255,0.07);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 14px;
}
.load-bar {
    height: 100%;
    background: #b91c1c;
    border-radius: 2px;
    animation: loadBar 2.2s ease forwards;
}
.load-sub {
    font-family: 'Roboto', sans-serif !important;
    color: rgba(255,255,255,0.18);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
    animation: loadFadeUp 0.6s 0.3s ease both;
    text-align: center;
    padding: 0 16px;
}

/* ══════════════════════════════════════
   THUMB ITEMS
══════════════════════════════════════ */
.thumb-item { border: 3px solid transparent; transition: all 0.3s ease; }
.thumb-item.active-thumb { border-color: #b91c1c !important; background-color: #fef2f2; transform: scale(1.02); }

/* ══════════════════════════════════════
   CUSTOM SCROLLBAR
══════════════════════════════════════ */
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #b91c1c; border-radius: 10px; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes slideInLeft  { from { opacity:0; transform:translateX(-50px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(50px);  } to { opacity:1; transform:translateX(0); } }
@keyframes fadeSlideUp  { from { opacity:0; transform:translateY(30px);  } to { opacity:1; transform:translateY(0); } }

.animate-left  { animation: slideInLeft  1s ease-out forwards; }
.animate-right { animation: slideInRight 1s ease-out forwards; }
.animate-hero  { opacity:0; animation: fadeSlideUp 0.8s ease-out forwards; }
.reveal-left, .reveal-right { opacity: 0; }

/* ══════════════════════════════════════
   MISC
══════════════════════════════════════ */
#mainProjectImg { transition: opacity 0.3s ease-in-out; }

.social-icon { transition: all 0.3s ease; }
.social-icon:hover { transform: translateY(-5px); }
.insta-hover:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* ══════════════════════════════════════
   MOBILE NAVIGATION — FIXED
══════════════════════════════════════ */
@media (max-width: 767px) {
    .main-nav:not(.mobile-open) {
        display: none !important;
    }
    .main-nav.mobile-open {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #030712;
        border-top: 1px solid rgba(255,255,255,0.07);
        padding: 0;
        z-index: 99999;
        flex-direction: row !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        white-space: nowrap;
    }
    .main-nav.mobile-open::-webkit-scrollbar { display: none; }
    .main-nav.mobile-open ul {
        display: flex !important;
        flex-direction: row !important;
        gap: 0 !important;
        width: 100%;
    }
    .main-nav.mobile-open ul li { flex-shrink: 0; }
    .main-nav.mobile-open ul li a {
        display: block;
        padding: 16px 20px;
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        border-bottom: 2px solid transparent;
        transition: color 0.2s, border-color 0.2s;
    }
    .main-nav.mobile-open ul li a:hover,
    .main-nav.mobile-open ul li a:active {
        color: #e8001d !important;
        border-bottom-color: #e8001d;
    }
}

/* ══════════════════════════════════════
   GALLERY FILTER BUTTONS
══════════════════════════════════════ */
.pop-filter-btn {
    font-family: 'Roboto', sans-serif !important;
    padding: 8px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    border: 1.5px solid #b91c1c;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.pop-filter-btn:hover { background: #b91c1c; }
.active-pop { background-color: #b91c1c !important; border-color: #b91c1c !important; color: white !important; }

/* ══════════════════════════════════════
   OVERLAY 1 — FULL GALLERY
══════════════════════════════════════ */
#galleryOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(10,10,10,0.98);
    overflow-y: auto;
}
.gallery-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}
.gallery-close-btn:hover { color: #e8001d; }

/* ══════════════════════════════════════
   OVERLAY 2 — PROJECT DETAIL
══════════════════════════════════════ */
#detailOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9100;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 16px;
}
#detailBox {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    width: 100%;
    max-width: 760px;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #b91c1c #1e1e1e;
}
#detailBox::-webkit-scrollbar { width: 6px; }
#detailBox::-webkit-scrollbar-thumb { background: #b91c1c; border-radius: 10px; }
.detail-close-row {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: flex-end;
    padding: 12px 16px 0;
    background: #141414;
    z-index: 10;
}
.detail-close-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}
.detail-close-btn:hover { color: #e8001d; }
#detailHero { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.detail-body { padding: 24px 28px 36px; }
#detailCat {
    font-family: 'Roboto', sans-serif !important;
    color: #e8001d; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px;
}
#detailName {
    font-family: 'Roboto', sans-serif !important;
    color: #fff; font-size: 1.9rem; text-transform: uppercase; margin-bottom: 10px;
}
#detailDesc {
    font-family: 'Nunito Sans', sans-serif !important;
    color: #aaa; font-size: 0.9rem; line-height: 1.75; margin-bottom: 28px;
}
.interior-label {
    font-family: 'Nunito Sans', sans-serif !important;
    color: #555; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px;
}
#detailInteriors { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.interior-card { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.interior-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.interior-card:hover img { transform: scale(1.07); }
.interior-card-label {
    font-family: 'Roboto', sans-serif !important;
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 20px 10px 8px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #eee;
    pointer-events: none;
}

/* ══════════════════════════════════════
   OVERLAY 3 — LIGHTBOX (with swipe support)
══════════════════════════════════════ */
#lightboxOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9200;
    background: rgba(0,0,0,0.97);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    touch-action: pan-y;
}
.lightbox-topbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
    z-index: 10;
    pointer-events: none;
}
.lightbox-counter {
    font-family: 'Nunito Sans', sans-serif !important;
    color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 0.1em; pointer-events: none;
}
.lightbox-close-btn {
    background: none; border: none; color: #aaa; font-size: 2.5rem;
    cursor: pointer; z-index: 10; transition: color 0.2s; pointer-events: all; line-height: 1; padding: 0;
}
.lightbox-close-btn:hover { color: #e8001d; }
#lightboxImg {
    max-width: 90vw; max-height: 78vh; border-radius: 10px; object-fit: contain;
    box-shadow: 0 0 80px rgba(232,0,29,0.2); transition: opacity 0.15s ease;
    display: block; user-select: none; -webkit-user-drag: none;
}
.lightbox-bottombar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 16px 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    pointer-events: none;
}
#lightboxLabel {
    font-family: 'Roboto', sans-serif !important;
    color: rgba(255,255,255,0.75); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
}
.lightbox-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    color: white; width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s, opacity 0.2s; z-index: 10;
    -webkit-tap-highlight-color: transparent;
}
.lightbox-nav-btn:hover { background: #b91c1c; border-color: #b91c1c; }
#lightboxPrev { left: 16px; }
#lightboxNext { right: 16px; }
.lightbox-swipe-hint {
    font-family: 'Nunito Sans', sans-serif !important;
    display: none; color: rgba(255,255,255,0.3); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
}
@media (max-width: 768px) {
    .lightbox-swipe-hint { display: block; }
    #lightboxPrev, #lightboxNext { width: 38px; height: 38px; }
    #lightboxPrev { left: 8px; }
    #lightboxNext { right: 8px; }
}

/* ══════════════════════════════════════
   SERVICES IMAGE MODAL
══════════════════════════════════════ */
#imageModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 8000;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.95);
    padding: 24px;
}
.modal-close-btn {
    position: absolute; top: 30px; right: 30px;
    background: none; border: none; color: white; font-size: 3rem; cursor: pointer; transition: color 0.2s;
}
.modal-close-btn:hover { color: #e8001d; }
#modalImg { max-width: 100%; max-height: 85vh; border-radius: 16px; border: 2px solid rgba(255,255,255,0.1); box-shadow: 0 0 60px rgba(0,0,0,0.8); }

/* ══════════════════════════════════════
   MESSENGER BUBBLE
══════════════════════════════════════ */
.messenger-bubble {
    position: fixed; bottom: 32px; right: 32px; z-index: 7000;
    background: #0084FF; padding: 20px; border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4); transition: transform 0.2s; display: block;
}
.messenger-bubble:hover { transform: scale(1.1); }

/* ══════════════════════════════════════════════════════
   ABOUT POPUP
══════════════════════════════════════════════════════ */
#aboutPopup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9500;
    background: rgba(0, 0, 0, 0.96);
    overflow-y: auto;
}
.about-close-btn {
    position: fixed; top: 18px; right: 24px; z-index: 9600;
    background: none; border: none; color: #fff; font-size: 2.8rem; line-height: 1; cursor: pointer; transition: color 0.2s;
}
.about-close-btn:hover { color: #e8001d; }
.about-inner { max-width: 860px; margin: 0 auto; padding: 48px 20px 80px; }
.about-banner {
    background: linear-gradient(135deg, #1a0000, #2d0000 50%, #1a0000);
    border: 1px solid #b91c1c; border-radius: 20px;
    padding: 52px 40px; text-align: center; margin-bottom: 24px;
    position: relative; overflow: hidden;
}
.about-banner-grid {
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(185,28,28,0.07) 0px, rgba(185,28,28,0.07) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(0deg,  rgba(185,28,28,0.04) 0px, rgba(185,28,28,0.04) 1px, transparent 1px, transparent 60px);
    pointer-events: none;
}
.about-banner-tag {
    font-family: 'Roboto', sans-serif !important;
    display: inline-block; border: 2px solid #b91c1c; padding: 5px 24px; border-radius: 999px;
    font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: #e8001d; margin-bottom: 18px; position: relative;
}
.about-banner-title {
    font-family: 'Roboto', sans-serif !important;
    font-size: clamp(2rem, 5vw, 3.2rem); color: #fff;
    font-weight: 900;
    letter-spacing: -0.02em; margin: 0 0 10px; text-transform: uppercase;
    position: relative;
}
.about-banner-line { width: 72px; height: 3px; background: #b91c1c; margin: 0 auto 16px; position: relative; }
.about-banner-tagline {
    font-family: 'Nunito Sans', sans-serif !important;
    color: #999; font-size: 1rem; font-style: italic; margin: 0; position: relative;
}
.about-section { background: #111; border: 1px solid #222; border-radius: 20px; padding: 40px; margin-bottom: 24px; }
.about-section:last-child { margin-bottom: 0; }
.about-section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.about-section-bar { width: 5px; height: 44px; background: #b91c1c; border-radius: 3px; flex-shrink: 0; }
.about-section-label {
    font-family: 'Roboto', sans-serif !important;
    color: #e8001d; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; margin: 0 0 3px;
}
.about-section-title {
    font-family: 'Roboto', sans-serif !important;
    color: #fff; font-size: 1.8rem; font-weight: 700; text-transform: uppercase; margin: 0;
}
.about-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.about-info-cell { background: #1a1a1a; border-radius: 12px; padding: 18px 20px; border: 1px solid #2a2a2a; }
.about-info-label {
    font-family: 'Roboto', sans-serif !important;
    color: #e8001d; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; margin: 0 0 5px;
}
.about-info-val {
    font-family: 'Nunito Sans', sans-serif !important;
    color: #fff; font-size: 0.92rem; margin: 0;
}
.about-text-block { background: #1a1a1a; border-radius: 12px; padding: 22px; border: 1px solid #2a2a2a; margin-bottom: 12px; }
.about-text-block:last-child { margin-bottom: 0; }
.about-text-label {
    font-family: 'Roboto', sans-serif !important;
    color: #e8001d; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; margin: 0 0 8px;
}
.about-text-block p {
    font-family: 'Nunito Sans', sans-serif !important;
    color: #ccc; font-size: 0.9rem; line-height: 1.8; margin: 0;
}
.about-timeline { position: relative; padding-left: 38px; }
.about-timeline::before {
    content: ''; position: absolute; left: 10px; top: 6px; bottom: 6px;
    width: 2px; background: linear-gradient(to bottom, #b91c1c, #3d0000); border-radius: 2px;
}
.about-tl-item { position: relative; margin-bottom: 32px; }
.about-tl-item:last-child { margin-bottom: 0; }
.about-tl-dot {
    position: absolute; left: -32px; top: 5px; width: 14px; height: 14px;
    background: #b91c1c; border-radius: 50%; border: 2px solid #1a0000;
    box-shadow: 0 0 0 3px rgba(185,28,28,0.25);
}
.about-tl-dot.active { background: #e8001d; border-color: #b91c1c; box-shadow: 0 0 12px rgba(232,0,29,0.55); }
.about-tl-year {
    font-family: 'Roboto', sans-serif !important;
    color: #e8001d; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 6px;
}
.about-tl-text {
    font-family: 'Nunito Sans', sans-serif !important;
    color: #bbb; font-size: 0.88rem; line-height: 1.8; margin: 0;
}
.about-tl-em { color: #fff; }

/* ── Org Chart ── */
.org-wrap { display: flex; flex-direction: column; align-items: center; }
.org-vline { width: 2px; height: 22px; background: #b91c1c; }
.org-vline-sm { height: 16px; }
.org-hline { height: 2px; background: #b91c1c; }
.org-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; width: 100%; }
.org-col { display: flex; flex-direction: column; align-items: center; }
.org-card { background: #1a1a1a; border-radius: 14px; padding: 18px 16px; text-align: center; border: 1px solid #2a2a2a; transition: border-color 0.2s, transform 0.2s; }
.org-card:hover { border-color: #b91c1c; transform: translateY(-3px); }
.org-top  { border: 2px solid #b91c1c; border-radius: 16px; padding: 22px 28px; width: 220px; }
.org-mid  { width: 175px; }
.org-bot  { width: 148px; }
.org-photo { border-radius: 50%; overflow: hidden; margin: 0 auto 10px; border: 2px solid #b91c1c; background: #2a2a2a; display: flex; align-items: center; justify-content: center; position: relative; }
.org-lg { width: 80px; height: 80px; border-width: 3px; }
.org-md { width: 64px; height: 64px; }
.org-sm { width: 54px; height: 54px; }
.org-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.org-fallback { opacity: 0.4; }
.org-name {
    font-family: 'Roboto', sans-serif !important;
    margin: 0 0 3px; color: #fff;
}
.org-name-lg { font-size: 0.9rem; font-weight: 700; }
.org-name-md { font-size: 0.82rem; font-weight: 700; }
.org-name-sm { font-size: 0.76rem; font-weight: 700; }
.org-role {
    font-family: 'Roboto', sans-serif !important;
    color: #e8001d; letter-spacing: 0.1em; text-transform: uppercase; margin: 0;
}
.org-role-lg { font-size: 0.58rem; letter-spacing: 0.15em; }
.org-role-md { font-size: 0.58rem; }
.org-role-sm { font-size: 0.54rem; letter-spacing: 0.07em; }
.org-note {
    font-family: 'Nunito Sans', sans-serif !important;
    color: #444; font-size: 0.68rem; text-align: center; margin-top: 24px; font-style: italic; line-height: 1.6;
}
.org-note code { color: #666; }

/* ── Responsive tweaks ── */
@media (max-width: 600px) {
    .about-info-grid { grid-template-columns: 1fr; }
    .about-banner { padding: 36px 20px; }
    .about-section { padding: 28px 20px; }
    .org-top  { width: 180px; }
    .org-mid  { width: 140px; }
    .org-bot  { width: 120px; }
}

/* ══════════════════════════════════════
   INQUIRY FORM STYLES
══════════════════════════════════════ */
.inquiry-label {
    font-family: 'Roboto', sans-serif !important;
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.inquiry-input,
.inquiry-textarea {
    font-family: 'Nunito Sans', sans-serif !important;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(185, 28, 28, 0.35);
    border-radius: 10px;
    padding: 11px 16px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}
.inquiry-input::placeholder,
.inquiry-textarea::placeholder { color: rgba(255, 255, 255, 0.2); }
.inquiry-input:focus,
.inquiry-textarea:focus { border-color: #b91c1c; background: rgba(185, 28, 28, 0.08); }
.inquiry-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.inquiry-select {
    font-family: 'Nunito Sans', sans-serif !important;
    width: 100%;
    background: #1a0000;
    border: 1px solid rgba(185, 28, 28, 0.35);
    border-radius: 10px;
    padding: 11px 16px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b91c1c' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.inquiry-select:focus { border-color: #b91c1c; }
.inquiry-select option { background: #1a0000; color: #ffffff; }
.inquiry-btn {
    font-family: 'Roboto', sans-serif !important;
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #b91c1c; border: none; border-radius: 10px;
    padding: 15px 24px; color: #ffffff;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
}
.inquiry-btn:hover { background: #991b1b; transform: translateY(-1px); }
.inquiry-btn:active { transform: scale(0.98); }
.inquiry-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.inquiry-success {
    font-family: 'Nunito Sans', sans-serif !important;
    background: rgba(21, 128, 61, 0.15); border: 1px solid rgba(21, 128, 61, 0.4);
    border-radius: 10px; padding: 14px 18px;
    color: #86efac; font-size: 0.88rem; text-align: center;
}
.inquiry-error {
    font-family: 'Nunito Sans', sans-serif !important;
    background: rgba(185, 28, 28, 0.15); border: 1px solid rgba(185, 28, 28, 0.4);
    border-radius: 10px; padding: 14px 18px;
    color: #fca5a5; font-size: 0.88rem; text-align: center;
}

/* ════════════════════════════════════════════════
   PREMIUM ANIMATION SYSTEM
════════════════════════════════════════════════ */

/* ── Core keyframes ── */
@keyframes hb-fadeUp      { from { opacity:0; transform:translateY(50px);  } to { opacity:1; transform:translateY(0); } }
@keyframes hb-fadeDown    { from { opacity:0; transform:translateY(-40px); } to { opacity:1; transform:translateY(0); } }
@keyframes hb-fadeLeft    { from { opacity:0; transform:translateX(-60px); } to { opacity:1; transform:translateX(0); } }
@keyframes hb-fadeRight   { from { opacity:0; transform:translateX(60px);  } to { opacity:1; transform:translateX(0); } }
@keyframes hb-zoomIn      { from { opacity:0; transform:scale(0.85);       } to { opacity:1; transform:scale(1);    } }
@keyframes hb-flipIn      { from { opacity:0; transform:rotateX(-30deg) translateY(30px); } to { opacity:1; transform:rotateX(0) translateY(0); } }
@keyframes hb-slideReveal { from { clip-path:inset(0 100% 0 0); opacity:1; } to { clip-path:inset(0 0% 0 0); opacity:1; } }
@keyframes hb-float       { 0%,100%{ transform:translateY(0px); } 50%{ transform:translateY(-10px); } }
@keyframes hb-shimmer     { 0%{ background-position:-200% center; } 100%{ background-position:200% center; } }
@keyframes hb-borderPulse { 0%,100%{ border-color:rgba(185,28,28,0.3); } 50%{ border-color:rgba(185,28,28,1); } }
@keyframes hb-particleDrift { 0%{transform:translateY(0) translateX(0);opacity:0.6} 100%{transform:translateY(-80px) translateX(20px);opacity:0} }

/* ── Scroll-triggered base states ── */
.hb-anim { opacity: 0; transition: none; }
.hb-anim.hb-visible {
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-duration: 0.8s;
}

/* ── Animation variants ── */
.hb-fade-up.hb-visible    { animation-name: hb-fadeUp; }
.hb-fade-down.hb-visible  { animation-name: hb-fadeDown; }
.hb-fade-left.hb-visible  { animation-name: hb-fadeLeft; }
.hb-fade-right.hb-visible { animation-name: hb-fadeRight; }
.hb-zoom-in.hb-visible    { animation-name: hb-zoomIn; }
.hb-flip-in.hb-visible    { animation-name: hb-flipIn; }
.hb-reveal.hb-visible     { animation-name: hb-slideReveal; opacity:1 !important; }

/* ── Stagger delays ── */
.hb-delay-1 { animation-delay: 0.1s !important; }
.hb-delay-2 { animation-delay: 0.2s !important; }
.hb-delay-3 { animation-delay: 0.3s !important; }
.hb-delay-4 { animation-delay: 0.4s !important; }
.hb-delay-5 { animation-delay: 0.5s !important; }
.hb-delay-6 { animation-delay: 0.6s !important; }
.hb-delay-7 { animation-delay: 0.7s !important; }
.hb-delay-8 { animation-delay: 0.8s !important; }

.hb-floating { animation: hb-float 3.5s ease-in-out infinite; }

.hb-shimmer-text {
    background: linear-gradient(90deg, #fff 0%, #ff6666 40%, #fff 60%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hb-shimmer 3s linear infinite;
}

.hb-underline-anim { position: relative; display: inline-block; }
.hb-underline-anim::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    height: 2px; width: 0; background: #b91c1c;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hb-underline-anim.hb-visible::after { width: 100%; }

.hb-magnetic { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); will-change: transform; }

.hb-card-hover {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease !important;
}
.hb-card-hover:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 30px 60px rgba(185,28,28,0.15), 0 10px 20px rgba(0,0,0,0.2) !important;
}

.hb-parallax-wrap { overflow: hidden; border-radius: inherit; }
.hb-parallax-img { will-change: transform; transform: scale(1.15); transition: transform 0s linear; }

#hb-scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, #b91c1c, #ff4444, #b91c1c);
    background-size: 200% auto;
    animation: hb-shimmer 2s linear infinite;
    z-index: 99998; width: 0%; transition: width 0.1s linear;
}

.hb-divider {
    width: 0; height: 2px;
    background: linear-gradient(90deg, #b91c1c, transparent);
    margin: 12px 0;
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.hb-divider.hb-visible { width: 80px; }

.hb-word {
    display: inline-block; opacity: 0; transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.hb-word.hb-word-visible { opacity: 1; transform: translateY(0); }

/* ── Nav link hover underline slide ── */
.main-nav ul li a { position: relative; font-family: 'Roboto', sans-serif !important; }
.main-nav ul li a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: #e8001d;
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.main-nav ul li a:hover::after { width: 100%; }

/* ── Project thumb hover ── */
.thumb-item { transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important; }
.thumb-item:hover { transform: translateX(6px) !important; background: rgba(185,28,28,0.05) !important; }

.hb-img-reveal {
    opacity: 0; clip-path: inset(0 0 100% 0);
    transition: opacity 0.6s ease, clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.hb-img-reveal.hb-visible { opacity: 1; clip-path: inset(0 0 0% 0); }

footer p {
    font-family: 'Roboto', sans-serif !important;
    transition: opacity 0.3s ease;
}
footer:hover p { opacity: 1 !important; }

/* ══════════════════════════════════════
   HERO HEADINGS — Keep Anton to preserve
   original "Welcome to / Hemasuto Builders!"
   condensed, tall display style
══════════════════════════════════════ */
#home h1,
#home h2 {
    font-family: 'Anton', sans-serif !important;
}

/* ── Social icons ── */
.social-icon { transition: all 0.3s ease; }
.social-icon:hover { transform: translateY(-5px); }
.insta-hover:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
