﻿/* ════════════════════════════════════════
   VERTICAL STICKY SLIDER
════════════════════════════════════════ */
.sticky-slider {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sticky-slider-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background: #3a3124;
    padding: 12px 7px;
    opacity: 0.9;
    cursor: pointer;
}


:root {
    --black: #0e0e0e;
    --white: #f8f6f2;
    --stone: #c8bfaf;
    --stone-light: #ede8e0;
    --stone-dark: #7a7060;
    --accent: #2a2318;
    --text: #1a1814;
    --muted: #000000;
    --border: #0e0e0eb3;
    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'DM Sans', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background: var(--white);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}


/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 68px;
    background: rgba(248,246,242,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

    nav.scrolled {
        box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    }

.nav-logo {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text);
    text-decoration: none;
    cursor: pointer;
}

    .nav-logo span {
        font-style: italic;
        font-weight: 300;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .nav-links a {
        font-size: 17px;
        font-weight: 400;
        color: var(--text);
        text-decoration: none;
        letter-spacing: 0.04em;
        position: relative;
        cursor: pointer;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--text);
            transition: width 0.25s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.nav-dropdown {
    position: relative;
}

    .nav-dropdown > a {
        padding-right: 14px;
    }

        .nav-dropdown > a::before {
            content: '↓';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 9px;
        }

        .nav-dropdown > a::after {
            display: none;
        }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    min-width: 200px;
    padding: 8px 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.03em;
    cursor: pointer;
}

    .dropdown-menu a:hover {
        background: var(--stone-light);
        color: var(--text);
    }

    .dropdown-menu a::after {
        display: none !important;
    }

.nav-cta {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 10px 24px;
    background: var(--text);
    color: var(--white) !important;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

    .nav-cta:hover {
        background: var(--stone-dark) !important;
        color: var(--white) !important;
    }

    .nav-cta::after {
        display: none !important;
    }

    .nav-cta::before {
        display: none !important;
    }

.section-eyebrow {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
}

    .section-title em {
        font-style: italic;
    }

.divider {
    width: 48px;
    height: 1px;
    background: var(--stone);
    margin: 24px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.btn-primary {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 14px 32px;
    background: var(--text);
    color: var(--white);
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
    display: inline-block;
    border: none;
}

    .btn-primary:hover {
        background: var(--stone-dark);
    }

.btn-outline {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 13px 32px;
    border: 1px solid var(--text);
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

    .btn-outline:hover {
        background: var(--text);
        color: var(--white);
    }

.btn-outline-light {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    padding: 12px 28px;
    border: 1px solid rgba(248,246,242,0.3);
    color: var(--white);
    text-decoration: none;
    transition: border-color 0.2s;
    white-space: nowrap;
    cursor: pointer;
}

    .btn-outline-light:hover {
        border-color: rgba(248,246,242,0.7);
    }

/* PAGE HEADER BANNER */
.page-banner {
    padding-top: 68px;
    height: 340px;
    background: var(--accent);
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.page-banner-texture {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a1510 0%, #2e2418 40%, #0e0e0e 100%);
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,0.7) 0%, transparent 60%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    padding: 0 48px 52px;
}

.page-banner-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.page-banner-title {
    font-family: var(--ff-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
}

    .page-banner-title em {
        font-style: italic;
        color: var(--white);
    }

/* More breathing room: banner → filters */
.page-banner + .cat-filter-bar {
    margin-top: 48px;
    padding-top: 48px;
}

/*  ANIMATION */
.fade-up,
.fade-left,
.fade-right,
.zoom-in {
    opacity: 0;
    transition: opacity .8s ease, transform .8s ease;
    will-change: transform,opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.fade-up {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(-40px);
}

.fade-right {
    transform: translateX(40px);
}

.zoom-in {
    transform: scale(.92);
}

    .fade-up.active,
    .fade-left.active,
    .fade-right.active,
    .zoom-in.active {
        opacity: 1;
        transform: none;
    }

.delay-1 {
    transition-delay: .15s;
}

.delay-2 {
    transition-delay: .30s;
}

.delay-3 {
    transition-delay: .45s;
}

.delay-4 {
    transition-delay: .60s;
}

@media (max-width:768px) {

    .fade-up {
        transform: translateY(25px);
    }

    .fade-left {
        transform: translateX(-25px);
    }

    .fade-right {
        transform: translateX(25px);
    }
}


/* FOOTER */
footer {
    background: #483f31;
    padding: 56px 48px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 16px;
    color: var(--white);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    font-style: italic;
    font-family: var(--ff-display);
}

.footer-contact {
    font-size: 16px;
    color: rgba(248,246,242,0.5);
    line-height: 2;
}

    .footer-contact a {
        color: rgba(248,246,242,0.6);
        text-decoration: none;
    }

.footer-col-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-col-links a {
        font-size: 16px;
        color: rgba(248,246,242,0.45);
        text-decoration: none;
        transition: color 0.2s;
        cursor: pointer;
    }

        .footer-col-links a:hover {
            color: var(--white);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 14px;
    color: var(--white);
}

/* ════════════════════════════════════════
   RESPONSIVE DESIGN
════════════════════════════════════════ */

/* TABLET */
@media (max-width: 1024px) {

    nav {
        padding: 0 24px;
    }

    .nav-links {
        gap: 20px;
    }

    section {
        padding: 72px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}


/* MOBILE NAV TOGGLE BUTTON */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}


/* MOBILE */
@media (max-width: 768px) {

    /* NAVBAR */
    nav {
        padding: 0 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-bottom: 1px solid var(--border);
        display: none;
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links a {
            width: 100%;
            padding: 14px 20px;
            border-top: 1px solid var(--border);
        }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding-left: 30px;
    }

    .nav-cta {
        margin: 12px 20px;
        width: calc(100% - 40px);
        text-align: center;
    }

    /* BANNER */
    .page-banner-content {
        padding: 0 20px 40px;
    }

    /* SECTIONS */
    section {
        padding: 64px 20px;
    }

    /* FOOTER */
    footer {
        padding: 40px 20px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    /* STICKY SLIDER HIDE (optional) */
    .sticky-slider {
        display: none;
    }
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

    .footer-contact-item i {
        color: var(--white);
        font-size: 14px;
        margin-top: 5px;
        min-width: 16px;
    }

    .footer-contact-item span,
    .footer-contact-item a {
        line-height: 1.8;
    }

    .footer-contact-item a {
        color: rgba(248,246,242,0.6);
        text-decoration: none;
    }

        .footer-contact-item a:hover {
            color: var(--white);
        }
/* =========================================
   FOOTER SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255,255,255,0.04);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

    .footer-social-link i {
        font-size: 18px;
        transition: transform 0.35s ease;
    }

    /* Hover Effect */

    .footer-social-link:hover {
        transform: translateY(-6px);
        background: rgba(255,255,255,0.10);
        border-color: rgba(255,255,255,0.25);
        box-shadow: 0 12px 24px rgba(0,0,0,0.18), 0 4px 10px rgba(0,0,0,0.10);
    }

        .footer-social-link:hover i {
            transform: scale(1.15) rotate(6deg);
        }

/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .footer-social {
        justify-content: center;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
    }

    .footer-social {
        order: 2;
    }

    .footer-copy {
        text-align: center;
    }

    .footer-social-link {
        width: 42px;
        height: 42px;
    }

        .footer-social-link i {
            font-size: 17px;
        }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .footer-social {
        gap: 12px;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
    }

        .footer-social-link i {
            font-size: 16px;
        }
}


.text-justify {
    text-align: justify;
}

/* =========================
   NAVBAR LOGO
========================= */

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    width: 170px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Navbar layout fix */
#navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 992px) {

    .logo-img {
        width: 145px;
    }
}

@media (max-width: 768px) {

    #navbar {
        padding: 12px 18px;
    }

    .logo-img {
        width: 125px;
    }

    .menu-toggle {
        font-size: 28px;
        cursor: pointer;
        z-index: 1001;
    }
}

@media (max-width: 480px) {

    .logo-img {
        width: 110px;
    }
}

/* CTA BAND */
.cta-band {
    padding: 80px 48px;
    background: var(--text);
    text-align: center;
}

.cta-band-title {
    font-family: var(--ff-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 8px;
}

    .cta-band-title em {
        font-style: italic;
        color: var(--stone);
    }

.cta-band-sub {
    font-size: 13px;
    color: rgba(248,246,242,0.5);
    margin-bottom: 40px;
    letter-spacing: 0.04em;
}

.cta-band-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-band-primary {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 14px 36px;
    background: var(--white);
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

    .btn-band-primary:hover {
        background: var(--stone-light);
    }

.btn-band-ghost {
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 14px 36px;
    border: 1px solid rgba(248,246,242,0.2);
    color: rgba(248,246,242,0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s;
    cursor: pointer;
}

    .btn-band-ghost:hover {
        border-color: rgba(248,246,242,0.5);
    }

/* Mobile (768px and below) */
@media (max-width: 768px) {

    .cta-band {
        padding: 56px 20px;
    }

    .cta-band-title {
        font-size: 26px;
    }

    .cta-band-sub {
        font-size: 12px;
    }

    .btn-band-primary {
        width: 100%;
        text-align: center;
    }
}


/*==================================================
    FLOATING INQUIRY BUTTON
==================================================*/

.inquiry-floating-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all .35s ease;
}

    .inquiry-floating-btn:hover {
        transform: translateY(-50%) translateX(-4px);
    }

.inquiry-floating-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: #483f31;
    color: #fff;
    padding: 18px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 0 12px 12px 0;
    transition: .3s;
}

.inquiry-floating-btn:hover .inquiry-floating-text {
    background: #222;
}

.inquiry-floating-btn:hover .inquiry-floating-icon {
    background: #9f7d4b;
}

/*============================
    Tablet
============================*/

@media(max-width:991px) {

    .inquiry-floating-text {
        padding: 16px 8px;
        font-size: 11px;
    }

    .inquiry-floating-icon {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }
}

/*============================
    Mobile
============================*/

@media(max-width:768px) {

    .inquiry-floating-btn {
        right: 15px;
        bottom: 20px;
        top: auto;
        transform: none;
    }

        .inquiry-floating-btn:hover {
            transform: translateY(-3px);
        }

    .inquiry-floating-text {
        display: none;
    }

    .inquiry-floating-icon {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        box-shadow: 0 12px 35px rgba(0,0,0,.25);
    }
}

/*==========================================================
        INQUIRY MODAL
==========================================================*/

.inquiry-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
}

    .inquiry-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.inquiry-modal {
    width: 100%;
    max-width: 760px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transform: translateY(40px) scale(.96);
    transition: .35s ease;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
    max-height: 92vh;
    overflow-y: auto;
}

.inquiry-overlay.active .inquiry-modal {
    transform: translateY(0) scale(1);
}

/*=========================
Close Button
=========================*/

.inquiry-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    background: #f3f3f3;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: .3s;
    color: #444;
}

    .inquiry-close:hover {
        background: #111;
        color: #fff;
    }

/*=========================
Header
=========================*/

.inquiry-header {
    padding: 10px 45px 10px;
}

.inquiry-tag {
    display: inline-block;
    background: #483f31;
    color: #fff;
    font-size: 11px;
    letter-spacing: .16em;
    padding: 8px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.inquiry-header h2 {
    font-size: 38px;
    font-weight: 300;
    font-family: var(--ff-display);
    margin: 0;
    color: var(--text);
}

.inquiry-header p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

/*=========================
Form
=========================*/

#pnlInquiry {
    display: block;
    padding: 0 45px 10px;
}

.inq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inq-group {
    margin-bottom: 10px;
}

    .inq-group label {
        display: block;
        margin-bottom: 5px;
        font-size: 11px;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--muted);
        font-weight: 600;
    }

/*=========================
Inputs
=========================*/

.inq-input,
.inq-select,
.inq-textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    background: #fff;
    padding: 15px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: .25s;
    outline: none;
    box-sizing: border-box;
}

    .inq-input:hover,
    .inq-select:hover,
    .inq-textarea:hover {
        border-color: #b89563;
    }

    .inq-input:focus,
    .inq-select:focus,
    .inq-textarea:focus {
        border-color: #b89563;
        box-shadow: 0 0 0 4px rgba(184,149,99,.12);
    }

.inq-textarea {
    resize: vertical;
    min-height: 140px;
}

.inq-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5L8 12l6.5-6.5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 50px;
}

/*=========================
Submit Button
=========================*/

.inq-submit {
    width: 100%;
    border: none;
    padding: 17px;
    background: #483f31;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .3s;
    margin-top: 10px;
}

    .inq-submit:hover {
        background: #000000;
    }

    .inq-submit:disabled {
        opacity: .7;
        cursor: not-allowed;
    }


/*==========================================================
        SUCCESS POPUP
==========================================================*/

.inq-success-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
}

    .inq-success-popup.active {
        opacity: 1;
        visibility: visible;
    }

.inq-success-box {
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    transform: scale(.92);
    transition: .35s ease;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.inq-success-popup.active .inq-success-box {
    transform: scale(1);
}

.inq-success-icon {
    font-size: 58px;
    color: #28a745;
    margin-bottom: 18px;
}

.inq-success-box h3 {
    margin: 0;
    font-family: var(--ff-display);
    font-size: 34px;
    font-weight: 300;
    color: var(--text);
}

.inq-success-box p {
    margin: 18px 0 28px;
    line-height: 1.8;
    color: var(--muted);
    font-size: 14px;
}

.inq-success-btn {
    border: none;
    background: #111;
    color: #fff;
    padding: 14px 34px;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

    .inq-success-btn:hover {
        background: #b89563;
    }

/*==========================================================
        SCROLLBAR
==========================================================*/

.inquiry-modal::-webkit-scrollbar {
    width: 8px;
}

.inquiry-modal::-webkit-scrollbar-track {
    background: #f3f3f3;
}

.inquiry-modal::-webkit-scrollbar-thumb {
    background: #c2c2c2;
    border-radius: 20px;
}

    .inquiry-modal::-webkit-scrollbar-thumb:hover {
        background: #999;
    }

/*==========================================================
        BODY LOCK
==========================================================*/

body.modal-open {
    overflow: hidden;
}

/*==========================================================
        TABLET
==========================================================*/

@media (max-width:991px) {

    .inquiry-modal {
        max-width: 700px;
    }

    .inquiry-header {
        padding: 35px 35px 20px;
    }

    #pnlInquiry {
        padding: 0 35px 35px;
    }
}

/*==========================================================
        MOBILE
==========================================================*/

@media (max-width:768px) {

    .inquiry-overlay {
        padding: 15px;
        align-items: flex-start;
        overflow: auto;
    }

    .inquiry-modal {
        margin: 20px 0;
        border-radius: 16px;
    }

    .inq-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .inquiry-header {
        padding: 28px 24px 15px;
    }

    #pnlInquiry {
        padding: 0 24px 28px;
    }

    .inquiry-header h2 {
        font-size: 28px;
    }

    .inquiry-header p {
        font-size: 13px;
    }

    .inq-input,
    .inq-select,
    .inq-textarea {
        font-size: 13px;
        padding: 13px 15px;
    }

    .inq-submit {
        padding: 15px;
    }

    .inq-success-box {
        padding: 30px 24px;
    }

        .inq-success-box h3 {
            font-size: 28px;
        }
}

/*==========================================================
        SMALL MOBILE
==========================================================*/

@media (max-width:480px) {

    .inquiry-header {
        padding: 24px 20px 12px;
    }

    #pnlInquiry {
        padding: 0 20px 22px;
    }

    .inquiry-header h2 {
        font-size: 24px;
    }

    .inquiry-tag {
        font-size: 10px;
    }

    .inq-group label {
        font-size: 10px;
    }

    .inq-success-box {
        padding: 24px 18px;
    }

    .inq-success-icon {
        font-size: 48px;
    }
}
