@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --gold:       #c8a96e;
  --gold-dk:    #a8893e;
  --gold-lt:    rgba(200,169,110,0.13);
  --dark:       #1a1a2e;
  --dark2:      #16213e;
  --dark3:      #0f3460;
  --white:      #ffffff;
  --off:        #f8f6f2;
  --text:       #2d2d2d;
  --text2:      #666;
  --text3:      #aaa;
  --border:     #e4ddd0;
  --green:      #28a745;
  --green-lt:   #d4edda;
  --red:        #dc3545;
  --red-lt:     #f8d7da;
  --blue:       #007bff;
  --blue-lt:    #cce5ff;
  --orange:     #ffc107;
  --orange-lt:  #fff3cd;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.15);
  --font:       'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* TOP BAR */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.72);
  font-size: 12.5px;
  padding: 7px clamp(1rem,4vw,2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--gold); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* HEADER / NAV */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  position: sticky;
  top: 0;
  z-index: 600;
}
.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem,4vw,2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 12px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.nav-logo-name { font-size: 12px; font-weight: 700; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-logo-sub  { font-size: 10px; color: var(--gold); font-weight: 600; letter-spacing: 0.4px; white-space: nowrap; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-menu li a {
  padding: 7px 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
  display: block;
  border-bottom: 2px solid transparent;
}
.nav-menu li a:hover { color: var(--gold); background: var(--gold-lt); }
.nav-menu li a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-menu li.nav-sep { width: 1px; height: 20px; background: var(--border); margin: 0 4px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-call {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}
.nav-call-icon {
  width: 34px;
  height: 34px;
  background: var(--gold-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.btn-getquote {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(200,169,110,0.3);
}
.btn-getquote:hover { background: var(--gold-dk); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 1.5px solid var(--border);
  padding: 8px 9px;
  border-radius: var(--radius);
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  color: var(--white);
  padding: clamp(2.5rem,7vw,5rem) clamp(1rem,4vw,2.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8a96e' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(22px,5vw,42px); font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: clamp(13px,2vw,16px); opacity: 0.8; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; margin-top: 14px; opacity: 0.7; }
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* MAIN WRAPPER */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(1.5rem,4vw,3rem) clamp(1rem,4vw,2rem);
}
.main-narrow { max-width: 860px; margin: 0 auto; }

/* PAGE HEADER */
.page-header { margin-bottom: 2rem; animation: fadeUp 0.5s ease both; }
.page-header h1 { font-size: clamp(22px,4vw,30px); font-weight: 800; color: var(--dark); letter-spacing: -0.4px; }
.page-header p  { font-size: 14.5px; color: var(--text2); margin-top: 5px; }
.page-header-row {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-bottom: 2rem;
}

/* CARD */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem,3vw,2rem);
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow);
  animation: fadeUp 0.5s ease both;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dk));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.card-title { font-size: 16px; font-weight: 700; margin-bottom: 1.2rem; color: var(--dark); }

/* FORM */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text2); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14.5px;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.18);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }
.form-group textarea { resize: vertical; min-height: 95px; }
.form-group select {
  cursor: pointer; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px;
}
.form-group small { display: block; margin-top: 5px; font-size: 11.5px; color: var(--text3); }

/* File Upload */
.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--off);
  position: relative;
  overflow: hidden;
}
.file-upload-area:hover, .file-upload-area.drag-over { border-color: var(--gold); background: rgba(200,169,110,0.06); }
.file-upload-area input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.file-upload-icon { font-size: 30px; margin-bottom: 8px; }
.file-upload-txt { font-size: 13px; color: var(--text2); }
.file-upload-txt span { color: var(--gold); font-weight: 600; }
.file-upload-hint { font-size: 11.5px; color: var(--text3); margin-top: 4px; }
.file-preview-list { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.file-preview-item {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 7px 12px; font-size: 12.5px;
}
.file-preview-name { color: var(--dark); font-weight: 500; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-right: 8px; }
.file-preview-size { color: var(--text3); font-size: 11px; flex-shrink: 0; }
.file-preview-remove { background: none; border: none; color: var(--red); cursor: pointer; font-size: 18px; padding: 0 0 0 8px; flex-shrink: 0; line-height: 1; }

/* BUTTONS */
.btn {
  padding: 10px 22px; border-radius: var(--radius); font-size: 14px;
  font-weight: 600; cursor: pointer; transition: all 0.2s;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--text2); font-family: var(--font);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn:hover { background: var(--off); }
.btn-primary {
  background: var(--gold); color: var(--white); border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(200,169,110,0.3);
}
.btn-primary:hover { background: var(--gold-dk); border-color: var(--gold-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,169,110,0.42); }
.btn-primary:active { transform: translateY(0); }
.btn-full { width: 100%; padding: 13px; font-size: 15px; margin-top: 4px; }
.btn-dark  { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark2); }
.btn-sm { padding: 6px 14px; font-size: 12.5px; }

/* ALERTS */
.alert {
  padding: 12px 16px; border-radius: var(--radius); font-size: 13.5px;
  margin-bottom: 1rem; display: none; align-items: center; gap: 10px; font-weight: 500;
}
.alert-success { background: var(--green-lt); color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: var(--red-lt);   color: #721c24; border: 1px solid #f5c6cb; }

/* ID RESULT BOX */
.id-result {
  margin-top: 1.2rem; padding: 1.5rem;
  background: linear-gradient(135deg, rgba(200,169,110,0.09), rgba(200,169,110,0.03));
  border: 1.5px solid rgba(200,169,110,0.35);
  border-radius: var(--radius-lg); text-align: center;
  animation: scaleIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.id-result-label { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.id-result-value { font-size: clamp(28px,6vw,36px); font-weight: 800; color: var(--gold); letter-spacing: 3px; }
.id-result-hint  { font-size: 12.5px; color: var(--text3); margin-top: 8px; }
.id-copy-btn {
  margin-top: 12px; padding: 7px 20px; font-size: 12.5px;
  background: rgba(200,169,110,0.12); border: 1px solid rgba(200,169,110,0.35);
  color: var(--gold); border-radius: var(--radius);
  cursor: pointer; font-family: var(--font); font-weight: 600; transition: all 0.2s;
}
.id-copy-btn:hover { background: rgba(200,169,110,0.24); }

/* BADGES */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; padding: 4px 12px;
  border-radius: 99px; letter-spacing: 0.3px;
}
.badge::before { content:''; width:6px; height:6px; border-radius:50%; flex-shrink:0; }
.badge-pending  { background: var(--orange-lt); color: #856404; }
.badge-pending::before  { background: var(--orange); }
.badge-process  { background: var(--blue-lt);   color: #004085; }
.badge-process::before  { background: var(--blue); }
.badge-done     { background: var(--green-lt);  color: #155724; }
.badge-done::before     { background: var(--green); }
.badge-reject   { background: var(--red-lt);    color: #721c24; }
.badge-reject::before   { background: var(--red); }

/* TRACK PAGE */
.track-blank { text-align: center; padding: 2.5rem 1rem; color: var(--text3); }
.track-blank-icon { font-size: 42px; margin-bottom: 12px; opacity: 0.35; }
.track-result {
  padding: 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--off);
  margin-top: 1.2rem; animation: fadeUp 0.4s ease both;
}
.track-id   { font-size: clamp(20px,4vw,28px); font-weight: 800; color: var(--dark); margin-bottom: 3px; letter-spacing: 0.5px; }
.track-name { font-size: 14px; color: var(--text2); margin-bottom: 14px; }
.section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text3); margin-bottom: 14px; }
.track-msg  { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--text2); }
.track-msg span { color: var(--dark); font-weight: 600; }

/* TIMELINE */
.timeline { padding-left: 4px; }
.tl-item { display: flex; gap: 14px; padding-bottom: 18px; position: relative; }
.tl-dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 4px; flex-shrink: 0; }
.tl-dot.done         { background: var(--green); box-shadow: 0 0 8px rgba(40,167,69,0.5); }
.tl-dot.active-blue  { background: var(--blue);  box-shadow: 0 0 10px rgba(0,123,255,0.5); }
.tl-dot.active-green { background: var(--green); box-shadow: 0 0 10px rgba(40,167,69,0.5); }
.tl-dot.active-red   { background: var(--red);   box-shadow: 0 0 10px rgba(220,53,69,0.5); }
.tl-dot.active-blue::after,
.tl-dot.active-green::after,
.tl-dot.active-red::after {
  content:''; position:absolute; inset:-4px; border-radius:50%;
  border:1.5px solid currentColor; opacity:0.3; animation: pulse 2s infinite;
}
.tl-label { font-size: 13.5px; font-weight: 600; display: block; color: var(--dark); }
.tl-label.blue  { color: #004085; }
.tl-label.green { color: #155724; }
.tl-label.red   { color: #721c24; }
.tl-desc  { font-size: 12.5px; color: var(--text3); display: block; margin-top: 2px; }
.tl-line  { position: absolute; left: 5px; top: 18px; width: 1px; height: calc(100% - 12px); background: linear-gradient(to bottom, var(--border), transparent); }

/* ADMIN */
.login-wrap { max-width: 420px; margin: 0 auto; }
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 12px; margin-bottom: 1.4rem;
}
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px;
  text-align: center; box-shadow: var(--shadow);
  animation: fadeUp 0.5s ease both;
}
.stat-num   { font-size: 26px; font-weight: 800; color: var(--dark); line-height: 1; }
.stat-label { font-size: 11px; color: var(--text3); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.admin-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.2rem; flex-wrap: wrap; gap: 12px; }
.admin-header-left h2 { font-size: 17px; font-weight: 700; color: var(--dark); }
.admin-header-left p  { font-size: 12.5px; color: var(--text3); margin-top: 2px; }
.admin-header-right   { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.search-input {
  padding: 9px 14px 9px 38px; font-size: 13.5px; width: 200px;
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: var(--radius); color: var(--text); font-family: var(--font); outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: 11px center;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--gold); }
.filter-bar { display: flex; gap: 6px; margin-bottom: 1.2rem; flex-wrap: wrap; }
.filter-btn {
  padding: 6px 14px; border-radius: 99px; font-size: 12.5px;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--text2); cursor: pointer; font-family: var(--font); font-weight: 500; transition: all 0.2s;
}
.filter-btn:hover { background: var(--off); }
.filter-btn.active { background: var(--gold); color: var(--white); border-color: var(--gold); box-shadow: 0 2px 10px rgba(200,169,110,0.35); }
.enquiry-row {
  border-bottom: 1px solid var(--border); padding: 14px 0;
  display: flex; align-items: flex-start; gap: 14px; transition: all 0.15s;
}
.enquiry-row:last-child { border-bottom: none; }
.enquiry-row:hover { background: rgba(200,169,110,0.04); padding-left: 8px; padding-right: 8px; margin: 0 -8px; border-radius: var(--radius); }
.enquiry-info { flex: 1; min-width: 0; }
.enquiry-name { font-size: 14px; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mono-badge { font-family: monospace; font-size: 11px; background: var(--off); padding: 2px 9px; border-radius: 4px; color: var(--gold); border: 1px solid var(--border); font-weight: 600; letter-spacing: 0.5px; }
.enquiry-meta { font-size: 12px; color: var(--text3); margin-top: 3px; }
.enquiry-msg  { font-size: 13px; color: var(--text2); margin-top: 5px; }
.enquiry-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.status-select {
  font-size: 12.5px; padding: 6px 10px; border: 1.5px solid var(--border);
  border-radius: var(--radius); background: var(--white); color: var(--text2);
  cursor: pointer; font-family: var(--font); outline: none; transition: border-color 0.2s;
}
.status-select:focus { border-color: var(--gold); }
.empty { text-align: center; padding: 3rem 1rem; color: var(--text3); font-size: 13.5px; }
.empty-icon { font-size: 36px; margin-bottom: 12px; opacity: 0.3; }
.doc-list { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 5px; }
.doc-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; background: var(--blue-lt); color: #004085;
  padding: 3px 9px; border-radius: var(--radius); text-decoration: none;
  border: 1px solid #b8daff; font-weight: 500; transition: all 0.2s; cursor: pointer;
}
.doc-link:hover { background: #b8daff; }

/* POPUP MODAL */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.58); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.popup-overlay.show { opacity: 1; visibility: visible; }
.popup-box {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 550px; max-height: 92vh; overflow-y: auto;
  padding: clamp(1.5rem,4vw,2.2rem);
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  transform: scale(0.9) translateY(24px);
  transition: transform 0.4s cubic-bezier(0.34,1.3,0.64,1);
  position: relative;
}
.popup-overlay.show .popup-box { transform: scale(1) translateY(0); }
.popup-top-bar { height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-dk)); border-radius: var(--radius-lg) var(--radius-lg) 0 0; margin: -2.2rem -2.2rem 1.5rem; }
.popup-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--off); border: none; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--text2); transition: all 0.2s; line-height: 1;
}
.popup-close:hover { background: #eee; color: var(--text); }
.popup-header { margin-bottom: 1.4rem; padding-right: 40px; }
.popup-header h2 { font-size: 19px; font-weight: 800; color: var(--dark); }
.popup-header p  { font-size: 13.5px; color: var(--text2); margin-top: 5px; }
.popup-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.popup-logo img { height: 40px; }
.popup-logo-txt { font-size: 12px; color: var(--text2); line-height: 1.4; }

/* FOOTER */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.72); }
.footer-main {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(2.5rem,5vw,4.5rem) clamp(1rem,4vw,2rem);
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: clamp(1.5rem,4vw,3rem);
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 50px; filter: brightness(0) invert(1); opacity: 0.88; }
.footer-about { font-size: 13.5px; line-height: 1.85; opacity: 0.72; }
.footer-h { font-size: 12.5px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13.5px; opacity: 0.8; align-items: flex-start; }
.footer-contact-item a { color: var(--gold); text-decoration: none; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none; color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 16px clamp(1rem,4vw,2rem);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  font-size: 12.5px; opacity: 0.5;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* WhatsApp Float */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 700;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: floatY 3s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1) !important; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes scaleIn {
  from { opacity:0; transform:scale(0.9); }
  to   { opacity:1; transform:scale(1); }
}
@keyframes pulse {
  0%,100% { opacity:.3; transform:scale(1); }
  50%      { opacity:.08; transform:scale(1.7); }
}
@keyframes floatY {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-7px); }
}

/* RESPONSIVE — Tablet */
@media (max-width: 960px) {
  .nav-call-num { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
}

/* RESPONSIVE — Mobile */
@media (max-width: 1024px) {
  .topbar { display: none !important; }
  .site-header { top: 0; }
  .nav-menu, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-wrap { height: 58px; padding: 0 14px; }
  .nav-logo img { height: 38px; }
  .nav-logo-name { font-size: 11px; }
  .nav-logo-sub { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: fixed; top: 58px; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--border);
    padding: 12px; gap: 4px; box-shadow: var(--shadow-lg); z-index: 500;
    animation: fadeUp 0.25s ease;
    max-height: calc(100vh - 58px);
    overflow-y: auto;
  }
  .nav-menu.open li a { padding: 11px 16px; border-radius: var(--radius); display: block; }
  .form-row { grid-template-columns: 1fr; }
  .admin-header-right { width: 100%; }
  .search-input { flex: 1; width: auto; }
  .enquiry-row { flex-direction: column; gap: 10px; }
  .enquiry-actions { flex-direction: row; width: 100%; justify-content: space-between; align-items: center; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .filter-btn { font-size: 11.5px; padding: 5px 10px; }
  .popup-top-bar { margin: -1.5rem -1.5rem 1.2rem; }
  .stats-row { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .stat-num { font-size: 20px; }
  .page-hero { padding: 2rem 1rem; }
  .main { padding: 1.2rem 0.9rem; }
  .card { padding: 1rem; }
  .wa-float { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 24px; }
}

/* ══ NEW STATUS BADGES ══ */
.badge-med-process { background: #e3f2fd; color: #0d47a1; }
.badge-med-process::before { background: #1565c0; }
.badge-med-done    { background: #e8f5e9; color: #1b5e20; }
.badge-med-done::before    { background: #2e7d32; }
.badge-med-reject  { background: #fce4ec; color: #880e4f; }
.badge-med-reject::before  { background: #c2185b; }
.badge-visa-process{ background: #f3e5f5; color: #4a148c; }
.badge-visa-process::before{ background: #7b1fa2; }
.badge-visa-done   { background: #e0f7fa; color: #006064; }
.badge-visa-done::before   { background: #00838f; }
.badge-visa-reject { background: #fff3e0; color: #e65100; }
.badge-visa-reject::before { background: #ef6c00; }

/* ══ DOC DOWNLOAD BUTTON ══ */
.doc-list { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px; }
.doc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.3); color: #a8893e;
  padding: 4px 10px; border-radius: 99px; cursor: pointer;
  font-family: var(--font); font-weight: 500; transition: all 0.2s;
  text-decoration: none;
}
.doc-link:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ══ MOBILE NAV TOGGLE OPEN STATE ══ */
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══ HOME PAGE ══ */
.hero-section { background: linear-gradient(135deg,var(--dark) 0%,var(--dark3) 100%); color:var(--white); padding:clamp(3.5rem,10vw,7rem) clamp(1rem,4vw,2rem); text-align:center; position:relative; overflow:hidden; }
.hero-section::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8a96e' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { position:relative; z-index:1; max-width:800px; margin:0 auto; }
.hero-inner h1 { font-size:clamp(26px,6vw,52px); font-weight:800; line-height:1.15; margin-bottom:14px; }
.hero-inner h1 span { color:var(--gold); }
.hero-inner p { font-size:clamp(14px,2vw,17px); opacity:0.82; max-width:600px; margin:0 auto 24px; }
.hero-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.btn-hero { padding:12px 26px; border-radius:var(--radius); font-family:var(--font); font-size:14px; font-weight:600; cursor:pointer; transition:all 0.2s; text-decoration:none; display:inline-block; }
.btn-hero-primary { background:var(--gold); color:var(--white); border:none; box-shadow:0 4px 16px rgba(200,169,110,0.4); }
.btn-hero-primary:hover { background:var(--gold-dk); transform:translateY(-2px); }
.btn-hero-outline { background:transparent; color:var(--white); border:2px solid rgba(255,255,255,0.5); }
.btn-hero-outline:hover { background:rgba(255,255,255,0.1); border-color:var(--white); }
.stats-banner { display:grid; grid-template-columns:repeat(4,1fr); background:var(--gold); }
.stat-banner-item { padding:18px 12px; text-align:center; border-right:1px solid rgba(255,255,255,0.2); }
.stat-banner-item:last-child { border-right:none; }
.stat-banner-num { font-size:clamp(22px,4vw,30px); font-weight:800; color:var(--white); line-height:1; }
.stat-banner-label { font-size:11px; color:rgba(255,255,255,0.85); margin-top:4px; font-weight:500; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:24px 20px; text-align:center; box-shadow:var(--shadow); transition:all 0.25s; }
.service-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--gold); }
.service-icon { font-size:38px; margin-bottom:12px; display:block; }
.service-title { font-size:14.5px; font-weight:700; color:var(--dark); margin-bottom:7px; }
.service-desc { font-size:13px; color:var(--text2); line-height:1.7; }
.countries-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:12px; }
.country-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:16px 10px; text-align:center; box-shadow:var(--shadow); transition:all 0.2s; cursor:pointer; }
.country-card:hover { border-color:var(--gold); transform:translateY(-3px); }
.country-flag { font-size:30px; margin-bottom:7px; display:block; }
.country-name { font-size:12.5px; font-weight:600; color:var(--dark); }
.section { padding:clamp(2.5rem,6vw,5rem) clamp(1rem,4vw,2rem); }
.section-inner { max-width:1200px; margin:0 auto; }
.section-alt { background:var(--off); }
.section-head { text-align:center; margin-bottom:clamp(1.5rem,4vw,3rem); }
.section-tag { font-size:12px; font-weight:700; color:var(--gold); text-transform:uppercase; letter-spacing:2px; display:block; margin-bottom:8px; }
.section-title { font-size:clamp(20px,4vw,30px); font-weight:800; color:var(--dark); line-height:1.25; }
.section-title span { color:var(--gold); }
.section-desc { font-size:14px; color:var(--text2); margin-top:10px; max-width:580px; margin-left:auto; margin-right:auto; }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.why-card { display:flex; gap:14px; align-items:flex-start; }
.why-icon { width:44px; height:44px; background:var(--gold-lt); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.why-title { font-size:14px; font-weight:700; color:var(--dark); margin-bottom:4px; }
.why-desc { font-size:13px; color:var(--text2); line-height:1.65; }
.jobs-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.job-tag { background:var(--white); border:1px solid var(--border); border-radius:99px; padding:10px 14px; text-align:center; font-size:13px; font-weight:500; color:var(--dark); transition:all 0.2s; cursor:pointer; box-shadow:var(--shadow); }
.job-tag:hover { background:var(--gold); color:var(--white); border-color:var(--gold); }

/* ══ ABOUT PAGE ══ */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:36px; align-items:center; }
.about-img-box { background:linear-gradient(135deg,var(--dark),var(--dark3)); border-radius:var(--radius-lg); padding:36px; text-align:center; color:var(--white); }
.about-big-num { font-size:clamp(56px,10vw,88px); font-weight:800; color:var(--gold); line-height:1; }
.about-big-label { font-size:15px; font-weight:600; opacity:0.85; margin-top:6px; }
.about-list { list-style:none; display:flex; flex-direction:column; gap:12px; margin-top:14px; }
.about-list li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--text2); }
.about-list li::before { content:'✓'; color:var(--gold); font-weight:700; flex-shrink:0; }
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.team-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:22px; text-align:center; box-shadow:var(--shadow); }
.team-avatar { width:68px; height:68px; border-radius:50%; background:var(--gold-lt); margin:0 auto 12px; display:flex; align-items:center; justify-content:center; font-size:26px; border:3px solid var(--gold); }
.team-name { font-size:15px; font-weight:700; color:var(--dark); }
.team-role { font-size:12.5px; color:var(--gold); font-weight:500; margin-top:3px; }

/* ══ SERVICE PAGE ══ */
.service-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.service-detail-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:22px; box-shadow:var(--shadow); transition:all 0.2s; }
.service-detail-card:hover { border-color:var(--gold); transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.service-detail-icon { font-size:34px; margin-bottom:10px; }
.service-detail-title { font-size:15px; font-weight:700; color:var(--dark); margin-bottom:7px; }
.service-detail-desc { font-size:13px; color:var(--text2); line-height:1.7; }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.process-step { text-align:center; }
.process-num { width:46px; height:46px; background:var(--gold); color:var(--white); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:17px; font-weight:800; margin:0 auto 10px; }
.process-title { font-size:13.5px; font-weight:700; color:var(--dark); margin-bottom:5px; }
.process-desc { font-size:12.5px; color:var(--text2); }

/* ══ CONTACT PAGE ══ */
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:30px; }
.contact-info-item { display:flex; gap:14px; align-items:flex-start; margin-bottom:20px; }
.contact-info-icon { width:44px; height:44px; background:var(--gold-lt); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.contact-info-label { font-size:11.5px; font-weight:600; color:var(--text3); text-transform:uppercase; letter-spacing:0.5px; margin-bottom:3px; }
.contact-info-val { font-size:14px; color:var(--dark); font-weight:500; }
.contact-info-val a { color:var(--gold); text-decoration:none; }
.map-embed { border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); margin-top:16px; }
.map-embed iframe { width:100%; height:220px; border:none; display:block; }

/* ══ RESPONSIVE UPDATES ══ */
@media (max-width: 960px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .countries-grid { grid-template-columns:repeat(3,1fr); }
  .jobs-grid { grid-template-columns:repeat(3,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .about-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .service-detail-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .stats-banner { grid-template-columns:repeat(2,1fr); }
  .process-steps { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 720px) {
  .topbar { display:none; }
  .nav-menu { display:none; }
  .nav-right { display:none; }
  .nav-toggle { display:flex; }
  .nav-wrap { height:64px; }
  .nav-menu.open {
    display:flex; flex-direction:column;
    position:fixed; top:64px; left:0; right:0; bottom:0;
    background:var(--white); border-top:2px solid var(--gold);
    padding:12px 16px; gap:2px; overflow-y:auto;
    box-shadow:var(--shadow-lg); z-index:550;
    animation:fadeUp 0.22s ease;
  }
  .nav-menu.open li { width:100%; }
  .nav-menu.open li a { padding:12px 14px; border-radius:var(--radius); display:block; font-size:14px; border-bottom:1px solid var(--border); }
  .nav-menu.open li.nav-sep { height:1px; width:100%; background:var(--border); margin:4px 0; }
  .services-grid { grid-template-columns:1fr; }
  .countries-grid { grid-template-columns:repeat(2,1fr); }
  .jobs-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; }
  .stats-banner { grid-template-columns:repeat(2,1fr); }
  .process-steps { grid-template-columns:1fr 1fr; }
}
@media (max-width: 420px) {
  .countries-grid { grid-template-columns:repeat(2,1fr); }
  .jobs-grid { grid-template-columns:1fr 1fr; }
  .process-steps { grid-template-columns:1fr; }
  .stats-banner { grid-template-columns:1fr 1fr; }
}

/* ══ POPUP IMAGE ONLY ══ */
.popup-img-box {
  padding: 0 !important;
  max-width: 480px !important;
  max-height: 90vw !important;
  background: transparent !important;
  border-radius: 14px !important;
  overflow: hidden;
  position: relative;
}
.popup-img-box .popup-close {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 10;
  background: rgba(0,0,0,0.55);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
.popup-img-box .popup-close:hover { background: rgba(0,0,0,0.82); }

/* ══ PASSPORT SECTION in Enquiry Form ══ */
.passport-section {
  background: linear-gradient(135deg, rgba(200,169,110,0.07), rgba(200,169,110,0.03));
  border: 1.5px solid rgba(200,169,110,0.3);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  margin-bottom: 14px;
}
.passport-section-title {
  font-size: 13px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}

/* ══ CONTACT FORM EMAIL CONNECTED ══ */
.contact-form-note {
  font-size: 12.5px; color: var(--text3);
  margin-top: 8px; display: flex; align-items: center; gap: 6px;
}
