/* ======================================================
   DESIGN TOKENS — identical to your new palette
====================================================== */
:root {
  --primary:     #0098D9;   /* bright blue — accent, buttons, tags, highlights */
  --primary-dk:  #1A7AC4;   /* darker blue — hover states on primary */
  --secondary:   #1A7AC4;   /* dark blue — replaces old navy for dark sections */
  --secondary-lt:#2192D0;   /* mid blue — hover on secondary */
  --dark:        #0d2a45;   /* deep blue-dark for deepest backgrounds */
  --white:  #fff;
  --off:    #F0F7FC;        /* very light blue tint instead of gray-white */
  --g50:    #F5FAFE;
  --g100:   #EAF4FB;
  --g150:   #D6EAF7;
  --g200:   #BDD9EF;
  --g300:   #93BDD9;
  --g400:   #6A9AB8;
  --g500:   #4A7A99;
  --g600:   #3A6480;
  --g800:   #1A3A52;
  --danger: #ef4444;
  --heading:'Poppins',sans-serif;
  --body:   'Manrope',sans-serif;
  --hh:     68px;
  --max:    1260px;
  --px:     24px;
  --radius: 14px;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body { font-family: var(--body); background: var(--white); color: var(--g800); -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.6; max-width: 100vw; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, button, select, textarea { font-family: inherit; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.section { padding: 72px 0; }
.section--alt { background: var(--off); }
h1,h2,h3,h4,h5,h6 { font-family: var(--heading); line-height: 1.15; letter-spacing: -0.01em; color: var(--secondary); }
h1 { font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem,2vw,1.3rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { font-family: var(--body); font-size: .9375rem; line-height: 1.7; color: var(--g600); }
.label { display: inline-block; font-family: var(--heading); font-weight: 600; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.section-hd { margin-bottom: 48px; }
.section-hd p { margin-top: 6px; max-width: 560px; }

/* ── Buttons ─────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--heading); font-weight: 600; font-size: .875rem; padding: 12px 24px; border-radius: 8px; transition: background .2s, color .2s, transform .15s; white-space: nowrap; border: 2px solid transparent; cursor: pointer; letter-spacing: .01em; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn-primary:hover { background: var(--primary); border-color: var(--primary); }
.btn-outline { background: transparent; color: var(--secondary); border-color: var(--secondary); }
.btn-outline:hover { background: var(--secondary); color: var(--white); }
.btn-ghost { color: var(--primary); font-family: var(--heading); font-weight: 600; font-size: .85rem; display: inline-flex; align-items: center; gap: 5px; border-bottom: 1.5px solid var(--primary); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.btn-ghost:hover { color: var(--secondary); border-color: var(--secondary); }
.icon-btn { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--g600); transition: color .2s, background .2s; position: relative; flex-shrink: 0; }
.icon-btn:hover { color: var(--secondary); background: var(--g100); }
.icon-btn .badge { position: absolute; top: 4px; right: 4px; background: var(--primary); color: var(--white); font-size: .6rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; pointer-events: none; transition: transform .2s; }

/* ── Announcement bar ───────────────────────────────── */
#ann-bar { background: var(--secondary); color: var(--white); text-align: center; padding: 9px var(--px); font-family: var(--body); font-size: .8125rem; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 12px; position: relative; letter-spacing: .01em; }
#ann-bar strong { color: var(--primary); font-weight: 700; }
#ann-bar .ann-close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.5); transition: color .2s; padding: 4px; }
#ann-bar .ann-close:hover { color: var(--white); }

/* ── Header ─────────────────────────────────────────── */
#hdr { position: sticky; top: 0; z-index: 900; background: var(--white); border-bottom: 1px solid var(--g200); height: var(--hh); }
.hdr-inner { display: flex; align-items: center; gap: 20px; height: 100%; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 34px; width: auto; }
.logo-txt { font-family: var(--heading); font-weight: 700; font-size: 1.125rem; color: var(--secondary); letter-spacing: -.01em; white-space: nowrap; }
.logo-txt span { color: var(--primary); }
.nav-desk { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.nav-desk a { font-family: var(--heading); font-weight: 500; font-size: .8375rem; color: var(--g600); padding: 7px 12px; border-radius: 6px; transition: color .2s, background .2s; white-space: nowrap; }
.nav-desk a:hover, .nav-desk a.active { color: var(--secondary); background: var(--g100); }
.hdr-search { flex: 1; max-width: 300px; position: relative; }
.hdr-search input { width: 100%; height: 38px; background: var(--g100); border: 1.5px solid var(--g200); border-radius: 8px; padding: 0 38px 0 14px; font-family: var(--body); font-size: .8375rem; color: var(--g800); outline: none; transition: border-color .2s; }
.hdr-search input:focus { border-color: var(--primary); }
.hdr-search input::placeholder { color: var(--g400); }
.hdr-search .si { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: var(--g400); pointer-events: none; }
.search-results { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: var(--white); border: 1.5px solid var(--g200); border-radius: 10px; box-shadow: 0 8px 32px rgba(44,54,91,.12); max-height: 360px; overflow-y: auto; display: none; z-index: 999; }
.search-results.show { display: block; }
.sr-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; transition: background .15s; }
.sr-item:hover { background: var(--g100); }
.sr-item img { width: 42px; height: 42px; object-fit: contain; border-radius: 6px; background: var(--g100); flex-shrink: 0; }
.sr-item-name { font-family: var(--heading); font-weight: 600; font-size: .825rem; color: var(--secondary); }
.sr-item-price { font-family: var(--body); font-size: .72rem; color: var(--primary); font-weight: 600; }
.sr-empty { padding: 16px; font-size: .85rem; color: var(--g400); text-align: center; }
.hdr-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.ham { display: none; width: 40px; height: 40px; border-radius: 8px; align-items: center; justify-content: center; color: var(--g600); transition: background .2s; }
.ham:hover { background: var(--g100); }

/* ── Toast ───────────────────────────────────────────── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--secondary); color: var(--white); padding: 12px 22px; border-radius: 10px; font-family: var(--heading); font-weight: 600; font-size: .85rem; z-index: 9999; opacity: 0; transition: opacity .3s, transform .3s; white-space: nowrap; pointer-events: none; display: flex; align-items: center; gap: 10px; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success .ti { color: var(--primary); }
.toast.error .ti { color: #f97316; }

/* ── Mobile drawer ──────────────────────────────────── */
.mob-nav { display: none; position: fixed; inset: 0; z-index: 9999; }
.mob-nav.open { display: block; }
.mob-overlay { position: absolute; inset: 0; background: rgba(44,54,91,.5); }
.mob-drawer { position: absolute; top: 0; left: 0; bottom: 0; width: min(300px,88vw); background: var(--white); padding: 20px; display: flex; flex-direction: column; gap: 4px; transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1); }
.mob-nav.open .mob-drawer { transform: translateX(0); }
.mob-hd { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--g200); margin-bottom: 8px; }
.mob-close { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--g600); transition: background .2s; }
.mob-close:hover { background: var(--g100); }
.mob-search { position: relative; margin-bottom: 12px; }
.mob-search input { width: 100%; height: 40px; background: var(--g100); border: 1.5px solid var(--g200); border-radius: 8px; padding: 0 38px 0 14px; font-family: var(--body); font-size: .85rem; outline: none; color: var(--g800); }
.mob-search .si { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: var(--g400); pointer-events: none; }
.mob-nav-links a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 8px; font-family: var(--heading); font-weight: 500; font-size: .875rem; color: var(--g600); transition: color .2s, background .2s; }
.mob-nav-links a:hover, .mob-nav-links a.active { color: var(--secondary); background: var(--g100); }
.mob-divider { height: 1px; background: var(--g200); margin: 8px 0; }
.mob-footer { margin-top: auto; padding-top: 16px; }
.mob-footer a { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--secondary); color: var(--white); font-family: var(--heading); font-weight: 600; font-size: .875rem; padding: 13px; border-radius: 10px; }

/* ── Page hero / breadcrumb ─────────────────────────── */
.page-hero { background: var(--off); border-bottom: 1px solid var(--g200); padding: 48px 0; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-family: var(--body); font-size: .78rem; color: var(--g400); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: var(--g400); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .cur { color: var(--secondary); font-weight: 500; }
.page-hero-content { max-width: 640px; }
.page-hero h1 { color: var(--secondary); margin-bottom: 12px; }
.page-hero p { font-size: 1rem; color: var(--g600); max-width: 520px; }

/* ── Contact layout ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 420px 1fr; gap: 40px; align-items: start; }

/* ── Info sidebar ───────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: var(--white); border: 1.5px solid var(--g200); border-radius: var(--radius); padding: 28px; transition: border-color .2s; }
.info-card:hover { border-color: var(--primary); }
.info-card-hd { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.info-ic { width: 46px; height: 46px; background: rgba(0,152,217,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.info-ic svg { width: 20px; height: 20px; }
.info-card-hd h3 { font-size: 1.05rem; color: var(--secondary); margin: 0; }
.info-card-hd p { font-size: .78rem; color: var(--g400); margin: 2px 0 0; line-height: 1.4; }
.info-rows { display: flex; flex-direction: column; gap: 10px; }
.info-row { display: flex; align-items: flex-start; gap: 10px; }
.info-row svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.info-row span { font-family: var(--body); font-size: .875rem; color: var(--g600); line-height: 1.55; }
.info-row a { color: var(--g600); transition: color .2s; }
.info-row a:hover { color: var(--primary); }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--g100); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 7px 0; font-family: var(--body); font-size: .85rem; color: var(--g600); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--secondary); }
.hours-table tr.today td { color: var(--primary); }
.hours-table tr.today td:last-child { color: var(--primary); }
.open-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(0,152,217,.1); color: var(--primary); font-family: var(--heading); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; margin-left: 8px; }
.open-badge .dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.75)} }
.closed-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(239,68,68,.08); color: #ef4444; font-family: var(--heading); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; margin-left: 8px; }

/* Social quick links */
.soc-quick { display: flex; gap: 8px; flex-wrap: wrap; }
.soc-q-btn { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1.5px solid var(--g200); border-radius: 8px; font-family: var(--heading); font-weight: 600; font-size: .775rem; color: var(--g600); transition: border-color .2s, color .2s, background .2s; }
.soc-q-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(0,152,217,.04); }
.soc-q-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Map embed */
.map-card { background: var(--white); border: 1.5px solid var(--g200); border-radius: var(--radius); overflow: hidden; }
.map-card iframe { width: 100%; height: 220px; display: block; filter: grayscale(.2); }
.map-footer { padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.map-footer span { font-family: var(--body); font-size: .8rem; color: var(--g600); }
.map-dir { font-family: var(--heading); font-weight: 600; font-size: .78rem; color: var(--primary); display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.map-dir:hover { color: var(--secondary); }

/* ── Contact form ───────────────────────────────────── */
.form-card { background: var(--white); border: 1.5px solid var(--g200); border-radius: var(--radius); padding: 36px; }
.form-card-hd { margin-bottom: 28px; }
.form-card-hd h2 { font-size: clamp(1.3rem,2.5vw,1.75rem); color: var(--secondary); margin-bottom: 6px; }
.form-card-hd p { font-size: .875rem; color: var(--g600); }

/* Inquiry type tabs */
.inquiry-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.inq-tab { display: flex; align-items: center; gap: 7px; padding: 8px 14px; border: 1.5px solid var(--g200); border-radius: 100px; font-family: var(--heading); font-weight: 600; font-size: .775rem; color: var(--g600); background: var(--white); cursor: pointer; transition: all .2s; }
.inq-tab:hover { border-color: var(--secondary); color: var(--secondary); }
.inq-tab.active { background: var(--secondary); border-color: var(--secondary); color: var(--white); }
.inq-tab svg { width: 14px; height: 14px; }

/* Form grid */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .span2 { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--heading); font-weight: 600; font-size: .78rem; color: var(--secondary); letter-spacing: .02em; }
.form-group label .req { color: var(--primary); margin-left: 2px; }
.form-control { width: 100%; padding: 11px 14px; background: var(--g100); border: 1.5px solid var(--g200); border-radius: 8px; font-family: var(--body); font-size: .875rem; color: var(--g800); outline: none; transition: border-color .2s, background .2s; }
.form-control:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(0,152,217,.08); }
.form-control::placeholder { color: var(--g400); }
.form-control.error { border-color: #ef4444; }
textarea.form-control { resize: vertical; min-height: 130px; line-height: 1.6; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24' stroke='%236A9AB8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }

/* File attachment */
.file-drop { border: 1.5px dashed var(--g300); border-radius: 8px; padding: 18px; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; }
.file-drop:hover, .file-drop.drag-over { border-color: var(--primary); background: rgba(0,152,217,.04); }
.file-drop svg { width: 28px; height: 28px; color: var(--g400); margin: 0 auto 8px; }
.file-drop p { font-size: .8rem; color: var(--g400); line-height: 1.5; margin: 0; }
.file-drop strong { color: var(--primary); }
.file-drop input[type="file"] { display: none; }
.file-list { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.file-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--g100); border-radius: 6px; padding: 7px 10px; }
.file-item-name { font-family: var(--body); font-size: .8rem; color: var(--secondary); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-item-rm { width: 22px; height: 22px; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--g400); cursor: pointer; transition: color .2s, background .2s; flex-shrink: 0; }
.file-item-rm:hover { color: #ef4444; background: rgba(239,68,68,.08); }

/* Consent checkbox */
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.checkbox-row label { font-family: var(--body); font-size: .8rem; color: var(--g600); line-height: 1.55; cursor: pointer; }
.checkbox-row label a { color: var(--primary); }

/* Submit button */
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.btn-submit { background: var(--secondary); color: var(--white); font-family: var(--heading); font-weight: 700; font-size: .925rem; padding: 14px 32px; border-radius: 10px; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; border: none; transition: background .2s, transform .15s; }
.btn-submit:hover { background: var(--primary); }
.btn-submit:active { transform: translateY(1px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.submit-note { font-family: var(--body); font-size: .75rem; color: var(--g400); }

/* Form success overlay */
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.success-icon { width: 68px; height: 68px; background: rgba(0,152,217,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary); }
.success-icon svg { width: 32px; height: 32px; }
.form-success h3 { color: var(--secondary); margin-bottom: 10px; }
.form-success p { color: var(--g600); max-width: 380px; margin: 0 auto 24px; font-size: .9rem; }

/* ── FAQ section ────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { border: 1.5px solid var(--g200); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--primary); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; cursor: pointer; transition: background .15s; }
.faq-q:hover { background: var(--g100); }
.faq-q span { font-family: var(--heading); font-weight: 600; font-size: .9rem; color: var(--secondary); line-height: 1.4; }
.faq-chevron { width: 28px; height: 28px; border-radius: 6px; background: var(--g100); display: flex; align-items: center; justify-content: center; color: var(--g400); flex-shrink: 0; transition: background .2s, transform .2s; }
.faq-item.open .faq-chevron { background: rgba(0,152,217,.1); color: var(--primary); transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: .875rem; color: var(--g600); line-height: 1.7; margin: 0; }

/* ── Quick actions row ──────────────────────────────── */
.quick-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.quick-card { background: var(--white); border: 1.5px solid var(--g200); border-radius: var(--radius); padding: 24px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: border-color .2s, transform .2s; }
.quick-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.quick-ic { width: 52px; height: 52px; background: rgba(0,152,217,.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.quick-ic svg { width: 22px; height: 22px; }
.quick-card h4 { font-family: var(--heading); font-weight: 600; font-size: .9rem; color: var(--secondary); }
.quick-card p { font-size: .8rem; color: var(--g600); line-height: 1.55; margin: 0; }
.quick-card a.btn-ghost { font-size: .78rem; }

/* ── Newsletter (same as index.php) ─────────────────── */
.nl-section { background: var(--secondary); padding: 72px 0; position: relative; overflow: hidden; }
.nl-section::before { content:''; position: absolute; top: -80px; right: -80px; width: 380px; height: 380px; border: 2px solid rgba(255,255,255,.04); border-radius: 50%; }
.nl-section::after { content:''; position: absolute; bottom: -100px; left: -60px; width: 280px; height: 280px; border: 2px solid rgba(255,255,255,.04); border-radius: 50%; }
.nl-inner { max-width: 560px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.nl-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,152,217,.15); border: 1px solid rgba(0,152,217,.3); color: var(--primary); font-family: var(--heading); font-weight: 600; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 18px; }
.nl-inner h2 { color: var(--white); font-size: clamp(1.5rem,3vw,2.1rem); margin-bottom: 10px; }
.nl-inner h2 .ac { color: var(--primary); }
.nl-inner p { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 28px; max-width: 440px; margin-left: auto; margin-right: auto; }
.nl-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.nl-form input { flex: 1; height: 52px; line-height: 52px; padding: 0 18px; background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.25); border-radius: 9px; font-family: var(--body); font-size: .9rem; color: var(--white); outline: none; transition: border-color .2s; min-width: 0; box-sizing: border-box; }
.nl-form input::placeholder { color: rgba(255,255,255,.45); }
.nl-form input:focus { border-color: var(--primary); background: rgba(255,255,255,.15); }
.nl-form button { height: 52px; padding: 0 28px; background: var(--primary); color: var(--white); font-family: var(--heading); font-weight: 600; font-size: .9rem; border-radius: 9px; white-space: nowrap; cursor: pointer; border: none; transition: background .2s; flex-shrink: 0; display: flex; align-items: center; }
.nl-form button:hover { background: var(--primary-dk); }
.nl-note { font-family: var(--body); font-size: .72rem; color: rgba(255,255,255,.35); margin-top: 12px; }

/* ── Footer ─────────────────────────────────────────── */
.footer { background: var(--white); border-top: 1px solid var(--g200); }
.footer-top { padding: 60px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand p { font-family: var(--body); font-size: .85rem; color: var(--g600); line-height: 1.7; margin: 14px 0 20px; max-width: 270px; }
.soc { display: flex; gap: 8px; }
.soc-btn { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--g200); display: flex; align-items: center; justify-content: center; color: var(--g400); transition: border-color .2s, color .2s, background .2s; }
.soc-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(0,152,217,.06); }
.footer-col-h { font-family: var(--heading); font-weight: 700; font-size: .75rem; color: var(--secondary); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.flinks { display: flex; flex-direction: column; gap: 9px; }
.flinks a { font-family: var(--body); font-size: .85rem; color: var(--g600); transition: color .2s; }
.flinks a:hover { color: var(--primary); }
.fcontact { display: flex; flex-direction: column; gap: 12px; }
.fci { display: flex; align-items: flex-start; gap: 10px; }
.fci svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.fci span { font-family: var(--body); font-size: .85rem; color: var(--g600); line-height: 1.5; }
.fhours { margin-top: 16px; }
.fhours p { font-family: var(--body); font-size: .82rem; color: var(--g600); line-height: 1.75; margin: 0; }
.footer-bottom { border-top: 1px solid var(--g200); padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-family: var(--body); font-size: .775rem; color: var(--g400); }
.pay-row { display: flex; align-items: center; gap: 6px; }
.pay-row span:first-child { font-family: var(--body); font-size: .72rem; color: var(--g400); }
.pay-badge { padding: 3px 9px; background: var(--g100); border: 1px solid var(--g200); border-radius: 6px; font-family: var(--heading); font-weight: 600; font-size: .68rem; color: var(--g600); letter-spacing: .03em; }
#btt { position: fixed; bottom: 24px; right: 24px; width: 42px; height: 42px; background: var(--secondary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 800; opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s, background .2s; pointer-events: none; }
#btt.show { opacity: 1; transform: translateY(0); pointer-events: all; }
#btt:hover { background: var(--primary); }

/* ── Responsive ─────────────────────────────────────── */
@media(max-width:1100px) {
  .contact-grid { grid-template-columns: 360px 1fr; }
  .quick-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media(max-width:860px) {
  :root { --hh: 60px; --px: 18px; }
  .nav-desk, .hdr-search { display: none; }
  .ham { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span2 { grid-column: 1; }
  .quick-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; padding: 0 4px; }
  .nl-form input, .nl-form button { width: 100%; height: 52px; justify-content: center; }
  .form-submit { flex-direction: column; align-items: stretch; }
  .btn-submit { justify-content: center; }
}
@media(max-width:560px) {
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
  .form-card { padding: 22px 18px; }
  .inquiry-tabs { gap: 4px; }
  .inq-tab { padding: 7px 10px; font-size: .72rem; }
}