/* ============================================
   NEW DESIGN CSS — Complete Frontend Redesign
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary-color: #1a1a2e;
  --secondary-color: #16213e;
  --accent-gold: #d4af37;
  --accent-gold-dark: #b8962e;
  --accent-gold-light: #e8cc6e;
  --dark-bg: #0f0f1a;
  --card-bg: #1e1e32;
  --border-color: rgba(212, 175, 55, 0.15);
  --text-color: #b0b0c0;
  --light-text: #e0e0e8;
  --white: #ffffff;
  --danger: #dc3545;
  --font-family: 'Nunito', sans-serif;
  --header-height: 80px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

/* ---------- Hide Old Header / Footer ---------- */
.header-area,
#strickymenu,
.mobile-menu,
.main-footer,
.subscribe-area,
.brand-area {
  display: none !important;
}

/* ============================================
   HEADER
   ============================================ */
.new-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition);
  height: var(--header-height);
}

.new-header.scrolled {
  background: rgba(15, 15, 26, 0.97);
  box-shadow: var(--shadow-md);
  height: 68px;
}

/* — Navbar — */
.new-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
}

/* — Logo — */
.new-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.new-logo img {
  max-height: 50px;
  transition: all var(--transition);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.new-header.scrolled .new-logo img {
  max-height: 42px;
}

/* — Nav Container (Wrapper for menu and mobile actions) — */
.new-nav-container {
  display: flex;
  align-items: center;
}

/* — Nav Menu (Desktop) — */
.new-nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.new-nav-item > a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.new-nav-item > a:hover,
.new-nav-item > a:focus {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
}

/* — Dropdown — */
.new-nav-item.has-dropdown {
  position: relative;
}

.new-nav-item.has-dropdown > a::after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.7rem;
  margin-left: 0.4rem;
  transition: transform var(--transition);
}

.new-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
}

.new-nav-item.has-dropdown:hover > .new-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.new-dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-color);
  transition: all var(--transition);
}

.new-dropdown li a:hover {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.06);
  padding-left: 1.5rem;
}

/* — Nav Actions (Desktop) — */
.new-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* — Cart Icon — */
.new-cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--light-text);
  font-size: 1.05rem;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.new-cart-icon:hover {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--border-color);
}

.new-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--danger);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
}

/* — Buttons — */
.new-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-family);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  text-align: center;
  line-height: 1.4;
}

.new-btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold);
}

.new-btn-outline:hover {
  background: var(--accent-gold);
  color: var(--dark-bg);
}

.new-btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--dark-bg);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
}

.new-btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.45);
  transform: translateY(-1px);
}

/* — Mobile Toggle — */
.new-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
  border-radius: 6px;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.new-mobile-toggle:hover {
  background: rgba(212, 175, 55, 0.1);
}

.new-mobile-toggle:active {
  transform: scale(0.95);
}

.new-mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.new-mobile-toggle.active span {
  background: var(--accent-gold);
}

.new-mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.new-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.new-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* — Mobile Actions (hidden on desktop) — */
.mobile-actions {
  display: none;
}

/* — Mobile Menu Overlay — */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1039;
  backdrop-filter: blur(2px);
}

body.menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

/* ============================================
   FOOTER
   ============================================ */
.new-footer {
  background: var(--primary-color);
  border-top: 1px solid var(--border-color);
  margin-top: 3rem;
}

.new-footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2.5rem;
}

.new-footer-section h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

/* — Social Links — */
.new-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.new-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-color);
  color: var(--accent-gold);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.new-social-link:hover {
  background: var(--accent-gold);
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* — Footer Links — */
.new-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-footer-links li {
  margin-bottom: 0.5rem;
}

.new-footer-links li a {
  display: inline-flex;
  align-items: center;
  color: var(--text-color);
  font-size: 0.92rem;
  padding: 0.25rem 0;
  transition: all var(--transition);
}

.new-footer-links li a:hover {
  color: var(--accent-gold);
  padding-left: 0.35rem;
}

/* — Footer Bottom — */
.new-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  border-top: 1px solid var(--border-color);
}

.new-footer-bottom p {
  font-size: 0.88rem;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: var(--dark-bg);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.preloader .status {
  width: 80px;
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================
   MODALS (Appointment + General)
   ============================================ */
.modal-content {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--light-text);
}

.modal-header {
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 1.5rem;
}

.modal-header .modal-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
}

.modal-header .close,
.modal-header .btn-close {
  color: var(--text-color);
  opacity: 0.7;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal-header .close:hover,
.modal-header .btn-close:hover {
  color: var(--accent-gold);
  opacity: 1;
}

.modal-body {
  padding: 1.5rem;
}

.modal-body .form-group {
  margin-bottom: 1.15rem;
}

.modal-body label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 0.4rem;
}

.modal-body .form-control,
.modal-body .form-select,
.modal-body select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--secondary-color);
  color: var(--light-text);
  font-family: var(--font-family);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: auto;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus,
.modal-body select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.modal-body .btn {
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  font-family: var(--font-family);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.modal-body .btn-primary {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--dark-bg);
}

.modal-body .btn-primary:hover {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
}

.modal-body .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-body .btn-danger {
  background: transparent;
  border: 1.5px solid var(--danger);
  color: var(--danger);
}

.modal-body .btn-danger:hover {
  background: var(--danger);
  color: var(--white);
}

.modal-backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.book-appointment select option {
  background: #ffffff;
  color: #374151;
}

/* ============================================
   JQUERY UI DATEPICKER — CUSTOM STYLING
   ============================================ */

/* The jQuery UI datepicker widget (#ui-datepicker-div) */
#ui-datepicker-div {
  z-index: 100001 !important;
  border-radius: 12px !important;
  border: 1px solid var(--border-color) !important;
  background: var(--secondary-color) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2) !important;
  padding: 0 !important;
  font-family: var(--font-family) !important;
  width: 300px !important;
  overflow: hidden;
  position: absolute !important;
}

/* Header with month/year and prev/next */
#ui-datepicker-div .ui-datepicker-header {
  background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold)) !important;
  border: none !important;
  border-radius: 12px 12px 0 0 !important;
  padding: 12px 10px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#ui-datepicker-div .ui-datepicker-title {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  margin: 0 auto !important;
  line-height: 1.4;
}

#ui-datepicker-div .ui-datepicker-title .ui-datepicker-month,
#ui-datepicker-div .ui-datepicker-title .ui-datepicker-year {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* Prev / Next buttons */
#ui-datepicker-div .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-next {
  cursor: pointer !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s ease !important;
}

#ui-datepicker-div .ui-datepicker-prev:hover,
#ui-datepicker-div .ui-datepicker-next:hover {
  background: rgba(255, 255, 255, 0.35) !important;
}

#ui-datepicker-div .ui-datepicker-prev span,
#ui-datepicker-div .ui-datepicker-next span {
  display: block !important;
  text-indent: -9999px;
  width: 16px !important;
  height: 16px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  position: static !important;
  margin: 0 auto !important;
}

#ui-datepicker-div .ui-datepicker-prev span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E") !important;
}

#ui-datepicker-div .ui-datepicker-next span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") !important;
}

/* Calendar table */
#ui-datepicker-div .ui-datepicker-calendar {
  width: 100% !important;
  border-collapse: collapse !important;
  table-layout: fixed !important;
  margin: 0 !important;
  font-size: 0.9rem !important;
}

/* Day of week headers */
#ui-datepicker-div .ui-datepicker-calendar thead th {
  padding: 10px 0 !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  color: #6b7280 !important;
  text-transform: uppercase !important;
  background: #f8fafc !important;
  border: none !important;
  letter-spacing: 0.5px;
}

#ui-datepicker-div .ui-datepicker-calendar thead th span {
  color: #6b7280 !important;
}

/* Day cells */
#ui-datepicker-div .ui-datepicker-calendar td {
  padding: 2px !important;
  text-align: center !important;
  border: none !important;
}

#ui-datepicker-div .ui-datepicker-calendar td a,
#ui-datepicker-div .ui-datepicker-calendar td span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  margin: 0 auto !important;
  border-radius: 50% !important;
  text-decoration: none !important;
  color: #374151 !important;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  transition: all 0.15s ease !important;
  border: none !important;
  background: transparent !important;
  cursor: pointer;
}

/* Hover state */
#ui-datepicker-div .ui-datepicker-calendar td a:hover {
  background: rgba(212, 175, 55, 0.15) !important;
  color: var(--accent-gold) !important;
}

/* Today highlight */
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-highlight {
  background: rgba(212, 175, 55, 0.2) !important;
  color: var(--accent-gold-dark) !important;
  font-weight: 700 !important;
}

/* Selected / Active state */
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-active {
  background: var(--accent-gold) !important;
  color: #1a1a2e !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4) !important;
}

/* Hover on highlight */
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-highlight:hover {
  background: rgba(212, 175, 55, 0.3) !important;
}

/* Other month days (muted) */
#ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-other-month a,
#ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-other-month span {
  color: #d1d5db !important;
}

/* Unselectable days */
#ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-unselectable span {
  color: #e5e7eb !important;
  cursor: default;
}

/* Datepicker INPUT inside modals */
#appointment_modal input.datepicker,
#appointment_modal1 input.datepicker,
#modal-date-box input.datepicker,
#mobile-modal-date-box input.datepicker {
  display: block !important;
  background-color: #ffffff !important;
  color: #374151 !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 0.65rem 1rem !important;
  font-size: 0.9rem !important;
  overflow: visible !important;
  z-index: auto !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  cursor: pointer;
  width: 100% !important;
}

#appointment_modal input.datepicker:focus,
#appointment_modal1 input.datepicker:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
  outline: none !important;
}

/* Datepicker container inside modal — allow overflow */
#modal-date-box,
#mobile-modal-date-box {
  position: relative;
  overflow: visible !important;
}

/* Modal body & content must allow overflow for datepicker */
#appointment_modal .modal-body,
#appointment_modal1 .modal-body,
#appointment_modal .modal-content,
#appointment_modal1 .modal-content {
  overflow: visible !important;
}

/* Responsive datepicker on small screens */
@media (max-width: 768px) {
  /* Hide the popup datepicker on mobile — we use inline instead */
  body > #ui-datepicker-div {
    display: none !important;
  }

  /* Inline datepicker container rendered inside the modal date box */
  .datepicker-inline-container {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: #ffffff;
  }

  .datepicker-inline-container .ui-datepicker {
    width: 100% !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    display: block !important;
    background: #ffffff !important;
    font-family: var(--font-family) !important;
  }

  .datepicker-inline-container .ui-datepicker-header {
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold)) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 12px 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .datepicker-inline-container .ui-datepicker-title {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    margin: 0 auto !important;
  }

  .datepicker-inline-container .ui-datepicker-title .ui-datepicker-month,
  .datepicker-inline-container .ui-datepicker-title .ui-datepicker-year {
    color: #ffffff !important;
    font-weight: 700 !important;
  }

  .datepicker-inline-container .ui-datepicker-prev,
  .datepicker-inline-container .ui-datepicker-next {
    cursor: pointer !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .datepicker-inline-container .ui-datepicker-prev:hover,
  .datepicker-inline-container .ui-datepicker-next:hover {
    background: rgba(255, 255, 255, 0.35) !important;
  }

  .datepicker-inline-container .ui-datepicker-prev span,
  .datepicker-inline-container .ui-datepicker-next span {
    display: block !important;
    text-indent: -9999px;
    width: 16px !important;
    height: 16px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: static !important;
    margin: 0 auto !important;
  }

  .datepicker-inline-container .ui-datepicker-prev span {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E") !important;
  }

  .datepicker-inline-container .ui-datepicker-next span {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") !important;
  }

  .datepicker-inline-container .ui-datepicker-calendar {
    width: 100% !important;
    border-collapse: collapse !important;
    table-layout: fixed !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
  }

  .datepicker-inline-container .ui-datepicker-calendar thead th {
    padding: 10px 0 !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    color: #6b7280 !important;
    text-transform: uppercase !important;
    background: #f8fafc !important;
    border: none !important;
  }

  .datepicker-inline-container .ui-datepicker-calendar td {
    padding: 2px !important;
    text-align: center !important;
    border: none !important;
  }

  .datepicker-inline-container .ui-datepicker-calendar td a,
  .datepicker-inline-container .ui-datepicker-calendar td span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    margin: 0 auto !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    color: #374151 !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    border: none !important;
    background: transparent !important;
    cursor: pointer;
    transition: all 0.15s ease !important;
  }

  .datepicker-inline-container .ui-datepicker-calendar td a:hover {
    background: rgba(212, 175, 55, 0.15) !important;
    color: var(--accent-gold) !important;
  }

  .datepicker-inline-container .ui-datepicker-calendar td a.ui-state-highlight {
    background: rgba(212, 175, 55, 0.2) !important;
    color: var(--accent-gold-dark) !important;
    font-weight: 700 !important;
  }

  .datepicker-inline-container .ui-datepicker-calendar td a.ui-state-active {
    background: var(--accent-gold) !important;
    color: #1a1a2e !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4) !important;
  }

  .datepicker-inline-container .ui-datepicker-calendar td.ui-datepicker-other-month a,
  .datepicker-inline-container .ui-datepicker-calendar td.ui-datepicker-other-month span {
    color: #d1d5db !important;
  }

  .datepicker-inline-container .ui-datepicker-calendar td.ui-datepicker-unselectable span {
    color: #e5e7eb !important;
    cursor: default;
  }
}

@media (max-width: 480px) {
  .datepicker-inline-container .ui-datepicker-calendar td a,
  .datepicker-inline-container .ui-datepicker-calendar td span {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.8rem !important;
  }

  .datepicker-inline-container .ui-datepicker-calendar thead th {
    font-size: 0.7rem !important;
    padding: 8px 0 !important;
  }
}

/* Inline datepicker */
.datepicker-inline {
  width: 100%;
}

/* ============================================
   SELECT2 (if used in modals)
   ============================================ */
.select2-container--default .select2-selection--single {
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--light-text);
  font-family: var(--font-family);
  font-size: 0.9rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}

.select2-dropdown {
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.select2-results__option {
  color: var(--light-text);
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
}

.select2-results__option--highlighted {
  background: rgba(212, 175, 55, 0.12) !important;
  color: var(--accent-gold) !important;
}

.select2-results__option--selected {
  background: rgba(212, 175, 55, 0.2) !important;
}

.select2-search--dropdown .select2-search__field {
  background: var(--primary-color);
  border: 1px solid var(--border-color);
  color: var(--light-text);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}

/* ============================================
   TOASTR OVERRIDES
   ============================================ */
.toast-success {
  background-color: #1a6b3c !important;
}

.toast-error {
  background-color: #8b1a1a !important;
}

.toast-info {
  background-color: #1a4a6b !important;
}

.toast-warning {
  background-color: #6b5c1a !important;
}

/* ============================================
   NICE SELECT OVERRIDES
   ============================================ */
.nice-select {
  background: var(--secondary-color) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--light-text) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-family) !important;
}

.nice-select .list {
  background: var(--secondary-color) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--shadow-md) !important;
  border-radius: var(--radius-sm) !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background: rgba(212, 175, 55, 0.1) !important;
  color: var(--accent-gold) !important;
}

/* ============================================
   GENERAL CONTENT SPACING
   ============================================ */
body {
  padding-top: var(--header-height);
}

.new-header.scrolled ~ main,
.new-header.scrolled + section,
.new-header.scrolled + div {
  padding-top: 0;
}

/* ============================================
   UTILITY / GENERAL PAGE STYLES
   ============================================ */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* General form controls outside modals */
.form-control,
.form-select {
  font-family: var(--font-family);
}

/* ============================================
   COOKIE CONSENT OVERRIDES
   ============================================ */
.wpcc-container {
  font-family: var(--font-family) !important;
  border-radius: var(--radius-md) !important;
}

/* ============================================
   JQUERY UI OVERRIDES (autocomplete etc.)
   ============================================ */
.ui-widget {
  font-family: var(--font-family) !important;
}

.ui-autocomplete {
  background: var(--secondary-color) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-md) !important;
}

.ui-menu-item-wrapper {
  padding: 0.5rem 0.75rem !important;
  color: var(--light-text) !important;
}

.ui-state-active,
.ui-menu-item-wrapper:hover {
  background: rgba(212, 175, 55, 0.12) !important;
  color: var(--accent-gold) !important;
  border: none !important;
}

/* ============================================
   DATA TABLE OVERRIDES
   ============================================ */
.dataTables_wrapper {
  color: var(--text-color);
}

table.dataTable {
  border-collapse: collapse !important;
}

table.dataTable thead th {
  background: var(--secondary-color);
  color: var(--light-text);
  border-bottom: 2px solid var(--border-color) !important;
  padding: 0.75rem;
  font-weight: 700;
  font-size: 0.88rem;
}

table.dataTable tbody td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border-color) !important;
  color: var(--text-color);
  font-size: 0.88rem;
}

table.dataTable tbody tr:hover {
  background: rgba(212, 175, 55, 0.04) !important;
}

/* ============================================
   RESPONSIVE — TABLET (max 991px)
   ============================================ */
@media (max-width: 991.98px) {
  :root {
    --header-height: 70px;
  }

  /* Footer grid → 2 columns */
  .new-footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 1.25rem 2rem;
  }

  /* Nav menu adjustments */
  .new-nav-item > a {
    padding: 0.5rem 0.7rem;
    font-size: 0.9rem;
  }

  .new-btn {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max 767px)
   ============================================ */
@media (max-width: 767.98px) {
  :root {
    --header-height: 64px;
  }

  body {
    padding-top: var(--header-height);
  }

  /* Show mobile toggle */
  .new-mobile-toggle {
    display: flex;
  }

  /* Hide desktop actions */
  .new-nav-actions.d-none.d-md-flex {
    display: none !important;
  }

  /* Mobile nav container (wrapper) */
  .new-nav-container {
    display: flex !important;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    min-height: 400px;
    flex-direction: column;
    align-items: stretch;
    background: var(--primary-color);
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 1040;
    border-right: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
  }

  .new-nav-container.active {
    transform: translateX(0);
  }

  /* Mobile nav menu */
  .new-nav-menu {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    width: 100%;
    flex: 1 1 auto;
    min-height: min-content;
  }
  
  .new-nav-item {
    display: block !important;
    width: 100%;
    flex-shrink: 0;
  }

  .new-nav-item > a {
    display: block !important;
    padding: 0.85rem 0.75rem;
    font-size: 1rem;
    color: var(--light-text) !important;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    width: 100%;
  }
  
  .new-nav-item > a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold) !important;
  }

  /* Dropdown on mobile */
  .new-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0;
    padding: 0;
    display: none;
    width: 100%;
  }

  .new-nav-item.has-dropdown.open > .new-dropdown {
    display: block !important;
  }

  .new-dropdown li {
    display: block !important;
    width: 100%;
  }

  .new-dropdown li a {
    display: block !important;
    padding: 0.7rem 1rem 0.7rem 2rem;
    font-size: 0.92rem;
    color: var(--text-color) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  }
  
  .new-dropdown li a:hover {
    color: var(--accent-gold) !important;
    background: rgba(212, 175, 55, 0.08);
  }

  /* Mobile actions visible inside menu */
  .mobile-actions {
    display: flex !important;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    margin: 0;
    border-top: 1px solid var(--border-color);
    width: 100%;
    background: var(--primary-color);
    flex-shrink: 0;
    min-height: min-content;
  }

  .mobile-actions .new-btn {
    display: flex !important;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
  }
  
  .mobile-actions select.form-select {
    display: block !important;
    width: 100%;
    flex-shrink: 0;
  }
  
  .mobile-actions form {
    display: block !important;
    width: 100%;
    flex-shrink: 0;
  }

  /* Footer → single column */
  .new-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.25rem;
  }

  .new-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }

  .new-footer-bottom > div {
    justify-content: center;
  }

  /* Modal adjustments */
  .modal-dialog {
    margin: 0.75rem;
  }

  .modal-body {
    padding: 1.25rem;
  }

  /* Datepicker smaller on mobile */
  .datepicker {
    width: 100% !important;
    max-width: 300px;
  }

  .datepicker td,
  .datepicker th {
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
  }

  /* Logo */
  .new-logo img {
    max-height: 40px;
  }

  /* Scroll top */
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max 479px)
   ============================================ */
@media (max-width: 479.98px) {
  :root {
    --header-height: 58px;
  }

  .new-navbar {
    padding: 0 0.75rem;
  }

  .new-logo img {
    max-height: 34px;
  }

  .new-footer-content {
    padding: 1.75rem 1rem;
    gap: 1.75rem;
  }

  .new-footer-section h4 {
    font-size: 1rem;
  }

  .new-footer-links li a {
    font-size: 0.88rem;
  }

  .new-footer-bottom {
    padding: 1rem;
  }

  .new-footer-bottom p {
    font-size: 0.82rem;
  }

  .new-btn {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
  }

  .modal-header {
    padding: 1rem 1.15rem;
  }

  .modal-body {
    padding: 1rem 1.15rem;
  }

  .modal-body .form-control,
  .modal-body .form-select {
    font-size: 0.88rem;
    padding: 0.6rem 0.75rem;
  }

  .datepicker td,
  .datepicker th {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }

  .datepicker thead tr:first-child th {
    font-size: 0.85rem;
    padding: 0.6rem 0.35rem;
  }

  .datepicker thead tr:nth-child(2) th {
    font-size: 0.72rem;
  }
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (min 1400px)
   ============================================ */
@media (min-width: 1400px) {
  .new-nav-item > a {
    padding: 0.6rem 1.15rem;
    font-size: 1rem;
  }

  .new-footer-content {
    gap: 3rem;
    padding: 4rem 1.5rem 3rem;
  }
}

/* ============================================
   RTL SUPPORT
   ============================================ */
html[dir="rtl"] .new-nav-menu {
  flex-direction: row-reverse;
}

html[dir="rtl"] .new-nav-actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .new-dropdown {
  left: auto;
  right: 0;
}

html[dir="rtl"] .new-dropdown li a:hover {
  padding-left: 1.25rem;
  padding-right: 1.5rem;
}

html[dir="rtl"] .new-footer-links li a:hover {
  padding-left: 0;
  padding-right: 0.35rem;
}

html[dir="rtl"] .fa-chevron-right::before {
  content: '\f053'; /* chevron-left for RTL */
}

@media (max-width: 767.98px) {
  html[dir="rtl"] .new-nav-menu {
    flex-direction: column;
    transform: translateX(100%);
    left: auto;
    right: 0;
    border-right: none;
    border-left: 1px solid var(--border-color);
  }

  html[dir="rtl"] .new-nav-menu.active {
    transform: translateX(0);
  }
}
/* ============================================
   MISSING STYLES & RESPONSIVE FIXES
   Add these to the end of new-design.css
   ============================================ */

/* ---------- HERO SECTION ---------- */
.new-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  /* background: var(--gradient-1); */
  overflow: hidden;
}

.new-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(22, 33, 62, 0.88) 100%); */
  z-index: 1;
}

.new-hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  color: white;
}

.new-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.new-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-color);
  line-height: 1.8;
}

.new-hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- SECTION STYLES ---------- */
.new-section {
  padding: 5rem 2rem;
  background: var(--dark-bg);
}

.new-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.new-section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.new-section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.new-section-description {
  font-size: 1.125rem;
  color: var(--text-color);
  line-height: 1.7;
}

/* ---------- FEATURES GRID ---------- */
.new-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1320px;
  margin: 0 auto;
}

/* ---------- FEATURE CARD ---------- */
.new-feature-card {
  background: var(--secondary-color);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  text-align: center;
}

.new-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.new-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  font-size: 2rem;
  color: var(--accent-gold);
  transition: all var(--transition);
}

.new-feature-card:hover .new-feature-icon {
  background: var(--accent-gold);
  color: var(--dark-bg);
  transform: rotate(10deg) scale(1.1);
}

.new-feature-card h3 {
  font-size: 1.5rem;
  color: var(--light-text);
  margin-bottom: 1rem;
  font-weight: 700;
}

.new-feature-card p {
  color: var(--text-color);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ---------- CARD COMPONENT ---------- */
.new-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid var(--border-color);
}

.new-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.new-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.new-card-body {
  padding: 2rem;
}

/* ---------- BADGE ---------- */
.new-badge {
  display: inline-block;
  padding: 0.4rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.new-badge-primary {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

/* ---------- GRADIENTS ---------- */
.new-section[style*="gradient-1"],
:root {
  --gradient-1: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --gradient-2: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
}

/* ---------- BUTTON SIZES ---------- */
.new-btn-large {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.new-btn-white {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.new-btn-white:hover {
  background: transparent;
  color: white;
}

/* ---------- FORM CONTROLS ---------- */
.form-control:focus,
.form-select:focus,
select:focus,
textarea:focus,
input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

/* ---------- TEXT COLORS ---------- */
:root {
  --text-light: #9ca3af;
  --dark-color: #1f2937;
}

/* ---------- PAGE HEADER (Breadcrumb) ---------- */
.banner-area {
  padding: 8rem 2rem 4rem;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.85) 100%);
}

.banner-text {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
}

.banner-text h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.banner-text ul {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

.banner-text ul li a {
  color: var(--text-color);
  transition: color var(--transition);
}

.banner-text ul li a:hover {
  color: var(--accent-gold);
}

.banner-text ul li span {
  color: var(--accent-gold);
}

.banner-text ul li::after {
  content: '/';
  margin-left: 0.75rem;
  color: var(--text-color);
}

.banner-text ul li:last-child::after {
  display: none;
}

/* ---------- BLOG STYLES ---------- */
.blog-page {
  background: var(--dark-bg);
  color: var(--text-color);
}

.blog-item {
  background: var(--secondary-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.single-blog-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.blog-author {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
}

.blog-author span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-color);
}

.blog-author span i {
  color: var(--accent-gold);
}

.blog-text {
  padding: 2rem;
  color: var(--text-color);
  line-height: 1.8;
}

.blog-text p,
.blog-text div {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.blog-text h1,
.blog-text h2,
.blog-text h3,
.blog-text h4,
.blog-text h5,
.blog-text h6 {
  color: var(--light-text);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* ---------- SIDEBAR ---------- */
.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.sidebar-item {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.sidebar-item h3 {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.sidebar-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-item ul li {
  margin-bottom: 0.75rem;
}

.sidebar-item ul li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  color: var(--text-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-weight: 500;
}

.sidebar-item ul li a:hover,
.sidebar-item ul li.active a {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
  padding-left: 1.25rem;
}

.sidebar-item ul li a i {
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.sidebar-item ul li a:hover i {
  transform: translateX(3px);
}

/* ---------- BLOG RECENT ITEM ---------- */
.blog-recent-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition);
}

.blog-recent-item:last-child {
  border-bottom: none;
}

.blog-recent-item:hover {
  background: rgba(212, 175, 55, 0.05);
  padding-left: 0.5rem;
  border-radius: var(--radius-sm);
}

.blog-recent-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.blog-recent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-recent-item:hover .blog-recent-photo img {
  transform: scale(1.1);
}

.blog-recent-text a {
  display: block;
  font-weight: 600;
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.blog-recent-text a:hover {
  color: var(--accent-gold);
}

.blog-post-date {
  font-size: 0.8rem;
  color: var(--text-color);
}

/* ---------- COMMENTS ---------- */
.comment-list {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.comment-list h4 {
  font-size: 1.75rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  font-weight: 700;
}

.comment-list h4 .c-number {
  color: var(--text-color);
  font-size: 1.25rem;
}

.comment-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment-list ul li {
  margin-bottom: 2rem;
}

.comment-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--secondary-color);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.comment-item .thumb {
  flex-shrink: 0;
}

.comment-item .thumb img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
}

.comment-item .com-text h5 {
  font-size: 1.125rem;
  color: var(--light-text);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.comment-item .com-text .date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.comment-item .com-text .date i {
  color: var(--accent-gold);
}

.comment-item .com-text p {
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

/* ---------- COMMENT FORM ---------- */
.comment-form {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--secondary-color);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.comment-form h4 {
  font-size: 1.75rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  font-weight: 700;
}

.comment-form .form-group {
  margin-bottom: 1.5rem;
}

.comment-form .form-control,
.comment-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--primary-color);
  color: var(--light-text);
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.comment-form .form-control:focus,
.comment-form textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.comment-form textarea {
  resize: vertical;
  min-height: 150px;
}

.comment-form button.btn {
  padding: 0.875rem 2.5rem;
  background: var(--accent-gold);
  color: var(--dark-bg);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}

.comment-form button.btn:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ---------- FAQ STYLES ---------- */
.faq-area {
  background: var(--dark-bg);
  padding: 5rem 2rem;
}

.faq_page_item h2 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  font-weight: 800;
}

.faq-single-item {
  margin-bottom: 2.5rem;
}

.faq-single-item h2 {
  font-size: 1.75rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.faq-item {
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-header {
  padding: 0;
}

.faq-button {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--light-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
  position: relative;
}

.faq-button::after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--accent-gold);
  font-size: 1.25rem;
  transition: transform var(--transition);
}

.faq-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.faq-button:hover {
  background: rgba(212, 175, 55, 0.05);
  color: var(--accent-gold);
}

.faq-body {
  padding: 1.5rem;
  color: var(--text-color);
  line-height: 1.8;
  border-top: 1px solid var(--border-color);
}

.faq_img {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent-gold);
}

.faq_img img {
  width: 100%;
  height: auto;
}

/* ---------- TESTIMONIAL STYLES ---------- */
.testimonial-page {
  background: var(--dark-bg);
  padding: 5rem 2rem;
}

.testimonial-item {
  background: var(--secondary-color);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition);
  height: 100%;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.testimonial-item p {
  color: var(--text-color);
  line-height: 1.8;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-item p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--accent-gold);
  font-family: Georgia, serif;
  line-height: 1;
}

.testi-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.testi-info h4.title {
  font-size: 1.125rem;
  color: var(--light-text);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.testi-info span {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* ---------- ABOUT/CUSTOM PAGE STYLES ---------- */
.about-style1 {
  background: var(--dark-bg);
  color: var(--text-color);
}

.about-style1 h1,
.about-style1 h2,
.about-style1 h3,
.about-style1 h4,
.about-style1 h5,
.about-style1 h6 {
  color: var(--light-text);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.about-style1 p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-style1 ul,
.about-style1 ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
  color: var(--text-color);
}

.about-style1 li {
  margin-bottom: 0.5rem;
}

.about-style1 a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.about-style1 a:hover {
  color: var(--accent-gold-light);
}

.about-style1 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

/* ---------- ABOUT PAGE — ABOUT IMAGE SECTION ---------- */
.about1-text {
  color: var(--text-color);
}

.about1-text h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.about1-text p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about1-text ul li,
.about1-text ol li,
.mission-text ul li,
.mission-text ol li {
  font-size: 1rem;
  margin-top: 0.9rem;
  position: relative;
  padding-left: 1.875rem;
  color: var(--text-color);
}

.about1-text ul li::after,
.about1-text ol li::after,
.mission-text ul li::after,
.mission-text ol li::after {
  position: absolute;
  content: "";
  background: url(../images/about_check.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  top: 4px;
  left: 0;
}

.about1-bgimg {
  position: relative;
  min-height: 400px;
  height: 100%;
  border-radius: var(--radius-md);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  overflow: hidden;
}

.about1-inner {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-25%, -50%);
  max-width: 300px;
  border-radius: var(--radius-md);
  border: 4px solid var(--accent-gold);
}

.about1-inner img {
  border: 0 !important;
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border-radius: 0;
  filter: none;
}

/* ---------- ABOUT PAGE — MISSION / VISION SECTION ---------- */
.bg-area {
  background: var(--secondary-color);
}

.mission-area {
  color: var(--text-color);
}

.mission-area.bg-area {
  background: var(--secondary-color);
}

.mission-text {
  color: var(--text-color);
}

.mission-text h1,
.mission-text h1 strong,
.mission-text h2,
.mission-text h2 strong,
.mission-text h3,
.mission-text h3 strong {
  color: var(--light-text);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.mission-text h2 {
  font-size: 2rem;
}

.mission-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.mission-img {
  position: relative;
  margin: 0 15px 11px 0;
  z-index: 9;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 9;
  filter: none;
  margin: 0;
}

.mission-img:before {
  position: absolute;
  content: "";
  left: -9px;
  top: -9px;
  width: 0;
  height: 0;
  border-top: 170px solid var(--accent-gold);
  border-left: 170px solid transparent;
  border-radius: 8px;
  transform: rotate(270deg);
  z-index: 1;
}

.mission-img:after {
  position: absolute;
  content: "";
  right: -9px;
  bottom: -9px;
  width: 0;
  height: 0;
  border-bottom: 170px solid var(--accent-gold);
  border-left: 170px solid transparent;
  z-index: 2;
  border-radius: 8px;
}

.mission-img.vision-img:before {
  right: -9px;
  top: -9px;
  left: auto;
  border-top: 170px solid var(--accent-gold);
  border-left: 170px solid transparent;
  transform: none;
}

.mission-img.vision-img:after {
  right: -9px;
  bottom: -9px;
  border-bottom: 170px solid var(--accent-gold);
  border-left: 170px solid transparent;
}

/* ---------- COUNTER / OVERVIEW SECTION ---------- */
.counter-page {
  position: relative;
  z-index: 1;
  background-color: var(--primary-color);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.counter-page::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.85);
  top: 0;
  left: 0;
  z-index: -1;
}

.counter-item {
  text-align: center;
  margin-bottom: 5px;
}

.counter-item .counter-icon {
  width: 70px;
  height: 70px;
  line-height: 66px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin: 0 auto 13px;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-item .counter-icon i {
  color: var(--accent-gold);
  font-size: 1.5rem;
}

.counter-item .counter {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 5px;
}

.counter-item .title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--light-text);
  margin: 0;
}

/* ---------- HOW WE WORK / FEATURE SECTION ---------- */
.about-area {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--dark-bg);
  color: var(--text-color);
}

.about-area .main-headline {
  text-align: center;
  margin-bottom: 1rem;
}

.about-area .main-headline .title {
  color: var(--light-text);
  font-size: 2.25rem;
  font-weight: 800;
}

.about-area .main-headline .title span {
  color: var(--accent-gold);
  display: inline;
  margin-right: 0.5rem;
}

.about-area .main-headline p {
  color: var(--text-color);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.8;
}

.about-skey {
  position: relative;
}

.about-skey:before {
  position: absolute;
  content: "";
  right: -9px;
  top: -9px;
  width: 0;
  height: 0;
  border-top: 170px solid var(--accent-gold);
  border-left: 170px solid transparent;
  border-radius: 8px;
}

.about-skey:after {
  position: absolute;
  content: "";
  left: -9px;
  bottom: -9px;
  width: 0;
  height: 0;
  border-bottom: 170px solid var(--accent-gold);
  border-left: 170px solid transparent;
  z-index: -1;
  border-radius: 8px;
  transform: rotate(90deg);
}

.about-img {
  position: relative;
  height: 525px;
  border-radius: 8px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  filter: none;
}

.about-img:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-section {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.video-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--primary-color);
  font-size: 1.25rem;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition);
}

.video-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
}

.video-button span {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--primary-color);
  margin-left: 3px;
}

.feature-section-text {
  color: var(--text-color);
}

.feature-section-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.feature-accordion .faq-item {
  margin-bottom: 0.75rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

.feature-accordion .faq-header {
  padding: 0;
}

.feature-accordion .faq-button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--light-text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-family);
}

.feature-accordion .faq-button:not(.collapsed) {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.05);
}

.feature-accordion .faq-body {
  padding: 0 1.25rem 1rem;
  color: var(--text-color);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ---------- PADDING/MARGIN UTILITIES ---------- */
.pt_50 { padding-top: 3rem !important; }
.pb_50 { padding-bottom: 3rem !important; }
.pb_65 { padding-bottom: 4.0625rem !important; }
.pt_70 { padding-top: 4.375rem !important; }
.pb_70 { padding-bottom: 4.375rem !important; }
.pt_100 { padding-top: 6.25rem !important; }
.pb_90 { padding-bottom: 5.625rem !important; }
.pb_100 { padding-bottom: 6.25rem !important; }
.pb_110 { padding-bottom: 6.875rem !important; }
.pt_40 { padding-top: 2.5rem !important; }
.mt_30 { margin-top: 1.875rem !important; }
.mb_30 { margin-bottom: 1.875rem !important; }
.mt_40 { margin-top: 2.5rem !important; }
.mt_50 { margin-top: 3.125rem !important; }
.sm_pr_0 { padding-right: 0 !important; }
.pr_150 { padding-right: 9.375rem; }
.ov_hd { overflow: hidden; }

/* ---------- DISPLAY UTILITIES ---------- */
.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.block { display: block !important; }
.inline-block { display: inline-block !important; }
.hidden { display: none !important; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ---------- TABLET (max 991px) ---------- */
@media (max-width: 991.98px) {
  .new-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .new-hero-content p {
    font-size: 1.1rem;
  }
  
  .new-section-title {
    font-size: 2.25rem;
  }
  
  .banner-text h1 {
    font-size: 2.5rem;
  }
  
  .new-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .sidebar {
    position: static;
    margin-top: 3rem;
  }
  
  .faq_img {
    position: static;
    margin-top: 2rem;
  }

  /* About page — tablet */
  .about1-inner {
    position: relative;
    transform: translate(0, 0);
    max-width: 100%;
  }

  .about1-bgimg {
    min-height: 300px;
  }

  .pr_150 {
    padding-right: 0 !important;
  }

  .about-area {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .about-skey {
    margin: 0;
  }

  .about-skey:before,
  .about-skey:after {
    display: none;
  }

  .about-img {
    height: 400px;
  }

  .feature-section-text {
    padding-right: 0;
    padding-left: 0;
  }

  .mission-img:before,
  .mission-img:after,
  .mission-img.vision-img:before,
  .mission-img.vision-img:after {
    border-width: 120px;
  }

  .about-area .main-headline .title {
    font-size: 2rem;
  }

  .counter-item .counter {
    font-size: 2rem;
  }

  .counter-item .title {
    font-size: 1rem;
  }
}

/* ---------- MOBILE (max 767px) ---------- */
@media (max-width: 767.98px) {
  .new-hero {
    min-height: 80vh;
    padding: 1.5rem;
  }
  
  .new-hero-content h1 {
    font-size: 2rem;
  }
  
  .new-hero-content p {
    font-size: 1rem;
  }
  
  .new-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .new-hero-actions .new-btn {
    width: 100%;
    justify-content: center;
  }
  
  .new-section {
    padding: 3rem 1.25rem;
  }
  
  .new-section-title {
    font-size: 1.875rem;
  }
  
  .new-section-description {
    font-size: 1rem;
  }
  
  .banner-area {
    padding: 6rem 1.5rem 3rem;
    min-height: 280px;
  }
  
  .banner-text h1 {
    font-size: 2rem;
  }
  
  .banner-text ul {
    font-size: 0.9rem;
    flex-wrap: wrap;
  }
  
  .new-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .new-feature-card {
    padding: 2rem;
  }
  
  .new-card-body {
    padding: 1.5rem;
  }
  
  .blog-author {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  
  .blog-text {
    padding: 1.5rem;
  }
  
  .comment-item {
    flex-direction: column;
    padding: 1.25rem;
  }
  
  .comment-form {
    padding: 1.5rem;
  }
  
  .faq_page_item h2 {
    font-size: 2rem;
  }
  
  .faq-button {
    font-size: 0.95rem;
    padding: 1rem;
  }
  
  .testimonial-item {
    padding: 1.75rem;
  }
  
  .pt_50 { padding-top: 2rem !important; }
  .pb_50 { padding-bottom: 2rem !important; }
  .pt_70 { padding-top: 3rem !important; }
  .pt_100 { padding-top: 4rem !important; }
  .pb_90 { padding-bottom: 3.5rem !important; }
  .pb_100 { padding-bottom: 4rem !important; }
  .pb_110 { padding-bottom: 4rem !important; }
  .pb_70 { padding-bottom: 3rem !important; }
  .pt_40 { padding-top: 1.5rem !important; }
  .mt_30 { margin-top: 1.25rem !important; }
  .mt_40 { margin-top: 1.5rem !important; }
  .mt_50 { margin-top: 2rem !important; }

  /* About page — mobile */
  .about1-text h1 {
    font-size: 1.75rem;
  }

  .about1-bgimg {
    min-height: 260px;
    margin-top: 2rem;
  }

  .about1-inner {
    position: relative;
    transform: none;
    max-width: 100%;
  }

  .mission-area {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .mission-text h2 {
    font-size: 1.5rem;
  }

  .mission-img {
    margin: 0 0 1.5rem 0;
  }

  .mission-img:before,
  .mission-img:after,
  .mission-img.vision-img:before,
  .mission-img.vision-img:after {
    border-width: 100px;
  }

  .counter-page {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .counter-item .counter-icon {
    width: 55px;
    height: 55px;
    font-size: 1.25rem;
  }

  .counter-item .counter-icon i {
    font-size: 1.25rem;
  }

  .counter-item .counter {
    font-size: 1.75rem;
  }

  .counter-item .title {
    font-size: 0.9rem;
  }

  .about-area {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .about-area .main-headline .title {
    font-size: 1.75rem;
  }

  .about-img {
    height: 350px;
  }

  .feature-section-text h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .feature-accordion .faq-button {
    font-size: 0.95rem;
    padding: 0.875rem 1rem;
  }

  .feature-accordion .faq-body {
    font-size: 0.9rem;
    padding: 0 1rem 0.875rem;
  }

  /* Reverse vision row on mobile for better reading flow */
  .mission-area .row.mt_40 {
    flex-direction: column-reverse;
  }
}

/* ---------- SMALL MOBILE (max 479px) ---------- */
@media (max-width: 479.98px) {
  .new-hero-content h1 {
    font-size: 1.75rem;
  }
  
  .new-section-title {
    font-size: 1.625rem;
  }
  
  .banner-text h1 {
    font-size: 1.75rem;
    letter-spacing: 1px;
  }
  
  .new-section-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
  
  .new-feature-card {
    padding: 1.5rem;
  }
  
  .new-feature-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  
  .blog-recent-item {
    flex-direction: column;
  }
  
  .blog-recent-photo {
    width: 100%;
    height: 180px;
  }
  
  .faq-button {
    font-size: 0.9rem;
    padding: 0.875rem;
  }
  
  .comment-item .thumb img {
    width: 50px;
    height: 50px;
  }

  /* About page \u2014 small mobile */
  .about1-text h1 {
    font-size: 1.5rem;
  }

  .about1-text p {
    font-size: 0.9rem;
  }

  .about1-bgimg {
    min-height: 220px;
  }

  .mission-text h2 {
    font-size: 1.25rem;
  }

  .mission-img:before,
  .mission-img:after,
  .mission-img.vision-img:before,
  .mission-img.vision-img:after {
    border-width: 70px;
  }

  .counter-item .counter-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .counter-item .counter-icon i {
    font-size: 1.1rem;
  }

  .counter-item .counter {
    font-size: 1.5rem;
  }

  .counter-item .title {
    font-size: 0.8rem;
  }

  .about-area .main-headline .title {
    font-size: 1.5rem;
  }

  .about-img {
    height: 280px;
  }

  .feature-section-text h2 {
    font-size: 1.25rem;
  }

  .feature-accordion .faq-button {
    font-size: 0.85rem;
    padding: 0.75rem;
  }

  .feature-accordion .faq-body {
    font-size: 0.85rem;
    padding: 0 0.75rem 0.75rem;
  }

  .video-button {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .video-button span {
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 12px;
  }
}

/* ---------- LARGE DESKTOP (min 1400px) ---------- */
@media (min-width: 1400px) {
  .new-hero-content h1 {
    font-size: 4rem;
  }
  
  .new-section-title {
    font-size: 3rem;
  }
  
  .new-features-grid {
    gap: 2.5rem;
  }
}

/* ---------- DARK MODE IMAGES ---------- */
img {
  filter: brightness(0.95);
}

/* ---------- SMOOTH SCROLLING ---------- */
html {
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

/* ---------- ACCESSIBILITY ---------- */
.new-btn:focus,
.form-control:focus,
.form-select:focus,
button:focus,
a:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Section */
.contauct-style1 {
  background: var(--dark-bg);
  padding: 50px 0 65px;
}

.contact_margin {
  margin-top: 30px;
}

/* Contact Info Items */
.contact-info-item {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 25px;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border-color);
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.contact-info-item.bg1 {
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--primary-color) 100%);
}

.contact-info-item.bg2 {
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
}

.contact-info-item.bg3 {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--card-bg) 100%);
}

.contact-info-item .contact-info {
  padding: 30px;
}

.contact-info-item .contact-info span {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-item .contact-info span i {
  font-size: 24px;
  color: var(--accent-gold);
  min-width: 30px;
}

.contact-info-item.bg2 .contact-info span i {
  color: var(--primary-color);
}

.contact-info-item .contact-text {
  margin-top: 10px;
}

.contact-info-item .contact-text p {
  margin-bottom: 5px;
  font-size: 16px;
  color: var(--light-text);
  line-height: 1.8;
}

.contact-info-item .contact-text a {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  transition: all var(--transition);
  display: inline-block;
  word-break: break-word;
}

.contact-info-item .contact-text a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.contact-info-item.bg2 .contact-text a:hover {
  color: var(--primary-color);
}

/* Contact Form */
.contact-form {
  margin-top: 30px;
}

.contauct-style1 .form-group {
  margin-bottom: 25px;
}

.contauct-style1 .form-group label {
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 10px;
  display: block;
  font-size: 15px;
}

.contact-form .form-control {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--light-text);
  font-size: 15px;
  transition: all var(--transition);
  font-family: var(--font-family);
  height: auto;
  min-height: 50px;
}

.contact-form .form-control:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  outline: none;
}

.contact-form textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

.contact-form .form-control::placeholder {
  color: var(--text-color);
  opacity: 0.6;
}

.contact-form .btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  padding: 16px 40px;
  border: 2px solid var(--accent-gold);
  background: var(--accent-gold);
  color: var(--primary-color);
  transition: all var(--transition);
  border-radius: var(--radius-sm);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-gold);
  min-height: 54px;
}

.contact-form .btn:hover {
  background: transparent;
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.3);
}

.contact-form .btn:active {
  transform: translateY(0);
}

/* About text in contact page */
.about1-text h1 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.about1-text p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Map Area */
.map-area {
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin-bottom: -10px;
  position: relative;
  border-top: 3px solid var(--accent-gold);
}

.map-area iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
  filter: saturate(0.8) contrast(1.1);
}

/* reCAPTCHA */
.g-recaptcha {
  transform: scale(0.9);
  transform-origin: 0 0;
}

/* ============================================
   CONTACT PAGE RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
  .contact_margin {
    margin-top: 40px;
  }
  
  .about1-text h1 {
    font-size: 2rem;
  }
  
  .map-area {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contauct-style1 {
    padding: 40px 0 50px;
  }
  
  .contact_margin {
    margin-top: 30px;
  }
  
  .contact-info-item {
    margin-bottom: 20px;
  }
  
  .contact-info-item .contact-info {
    padding: 25px 20px;
  }
  
  .contact-info-item .contact-info span {
    font-size: 16px;
  }
  
  .contact-info-item .contact-info span i {
    font-size: 20px;
  }
  
  .contact-info-item .contact-text a {
    font-size: 16px;
  }
  
  .about1-text h1 {
    font-size: 1.75rem;
  }
  
  .about1-text p {
    font-size: 15px;
  }
  
  .contact-form .btn {
    width: 100%;
    padding: 14px 30px;
  }
  
  .map-area {
    height: 350px;
  }
  
  .g-recaptcha {
    transform: scale(0.85);
  }
}

@media (max-width: 576px) {
  .contauct-style1 {
    padding: 30px 0 40px;
  }
  
  .contact-info-item .contact-info {
    padding: 20px 15px;
  }
  
  .contact-info-item .contact-info span {
    font-size: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .about1-text h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .about1-text p {
    font-size: 14px;
  }
  
  .contact-form .form-control {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .contact-form textarea.form-control {
    min-height: 150px;
  }
  
  .contact-form .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .map-area {
    height: 300px;
  }
  
  .g-recaptcha {
    transform: scale(0.77);
  }
}

@media (max-width: 400px) {
  .contact-info-item .contact-text a {
    font-size: 14px;
    word-break: break-all;
  }
  
  .map-area {
    height: 250px;
  }
}

/* ---------- PRINT STYLES ---------- */
@media print {
  .new-hero,
  .banner-area,
  .sidebar,
  .comment-form,
  .new-hero-actions,
  .blog-author,
  .faq-header {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .new-card,
  .blog-item,
  .testimonial-item {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
}
/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .new-header,
  .new-footer,
  .scroll-top,
  .new-mobile-toggle {
    display: none !important;
  }

  body {
    padding-top: 0;
    background: #fff;
    color: #000;
  }
}

/* ============================================
   APPOINTMENT MODAL REDESIGN - RESPONSIVE
   ============================================ */

/* ============================================
   MODAL BACKDROP
   ============================================ */
.modal-backdrop.show {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.6);
}

/* ============================================
   APPOINTMENT MODAL — COMPLETE REDESIGN
   ============================================ */
.appointment-modal-redesign {
  border: none;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: apptSlideIn 0.35s ease-out;
}

@keyframes apptSlideIn {
  from { transform: translateY(-40px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* — Modal Header — */
.appointment-modal-redesign .modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1e2d50 100%);
  padding: 1.25rem 1.75rem;
  border-bottom: 2px solid var(--accent-gold);
}

.appointment-modal-redesign .modal-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.appointment-modal-redesign .modal-title i {
  font-size: 1.1rem;
  color: var(--accent-gold);
}

.appointment-modal-redesign .btn-close {
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.appointment-modal-redesign .btn-close:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(90deg);
}

/* — Modal Body — */
.appointment-modal-redesign .modal-body {
  background: #ffffff;
  padding: 1.75rem;
}

/* — Step Indicator — */
.appointment-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 1.75rem;
  padding: 0 8px;
}

.appointment-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: #e5e7eb;
  z-index: 0;
  border-radius: 2px;
}

.appointment-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.appointment-steps .step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  transition: all 0.4s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border: 3px solid #ffffff;
}

.appointment-steps .step-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #9ca3af;
  text-align: center;
  transition: all 0.3s ease;
  line-height: 1.2;
}

.appointment-steps .step.active .step-icon {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #1a1a2e;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.appointment-steps .step.active .step-label {
  color: var(--accent-gold);
  font-weight: 700;
}

.appointment-steps .step.completed .step-icon {
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.appointment-steps .step.completed .step-label {
  color: #16a34a;
}

.appointment-steps .step.completed .step-icon::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.8rem;
  position: absolute;
}

/* — Form Fields — */
.appointment-field {
  opacity: 0;
  animation: apptFadeIn 0.4s ease forwards;
}

@keyframes apptFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

.appointment-modal-redesign .form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.appointment-modal-redesign .form-label .text-primary {
  color: var(--accent-gold) !important;
}

.appointment-modal-redesign .form-select,
.appointment-modal-redesign .form-control {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  color: #374151;
  transition: all 0.25s ease;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Custom dropdown arrow for <select> */
.appointment-modal-redesign .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

.appointment-modal-redesign .form-select:focus,
.appointment-modal-redesign .form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  outline: none;
}

.appointment-modal-redesign .form-select:hover,
.appointment-modal-redesign .form-control:hover {
  border-color: #d1d5db;
}

/* Select options — SOLID background, no transparency */
.appointment-modal-redesign .form-select option,
.appointment-modal-redesign select option,
#appointment_modal select option,
#appointment_modal1 select option {
  background-color: #ffffff !important;
  color: #374151 !important;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.appointment-modal-redesign .form-select option:hover,
#appointment_modal select option:hover,
#appointment_modal1 select option:hover {
  background-color: rgba(212, 175, 55, 0.1) !important;
  color: var(--accent-gold-dark) !important;
}

.appointment-modal-redesign .form-select option:checked,
#appointment_modal select option:checked,
#appointment_modal1 select option:checked {
  background-color: var(--accent-gold) !important;
  color: #1a1a2e !important;
}

/* — Input Group (date field) — */
.appointment-modal-redesign .input-group-text {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #1a1a2e;
  border: 2px solid var(--accent-gold);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.appointment-modal-redesign .input-group .form-control {
  border-left: none;
  border-radius: 0 10px 10px 0;
}

.appointment-modal-redesign .input-group .form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: none;
}

/* — Alert Styling — */
.appointment-modal-redesign .alert {
  border-radius: 10px;
  border: none;
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.appointment-modal-redesign .alert-warning {
  background: #fef3c7;
  color: #92400e;
  border-left: 4px solid #f59e0b;
}

/* — Buttons — */
.appointment-modal-redesign .btn {
  border-radius: 10px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
}

.appointment-modal-redesign .btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #1a1a2e;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.appointment-modal-redesign .btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.appointment-modal-redesign .btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.appointment-modal-redesign .btn-primary:disabled {
  background: #d1d5db;
  color: #9ca3af;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.appointment-modal-redesign .btn-outline-secondary {
  border: 2px solid #d1d5db;
  color: #6b7280;
  background: #ffffff;
}

.appointment-modal-redesign .btn-outline-secondary:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #374151;
}

/* ============================================
   NUCLEAR CLEANUP: HIDE ALL PLUGIN WRAPPERS
   IN APPOINTMENT MODALS
   ============================================ */

/* Hide ALL Select2 elements inside appointment modals */
#appointment_modal .select2-container,
#appointment_modal1 .select2-container,
#appointment_modal .select2,
#appointment_modal1 .select2 {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
}

/* Hide ALL NiceSelect elements inside appointment modals */
#appointment_modal .nice-select,
#appointment_modal1 .nice-select,
.book-appointment .nice-select {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
}

/* Force native <select> visible, styled, and working */
#appointment_modal select,
#appointment_modal1 select,
.appointment-modal-redesign select {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  pointer-events: auto !important;
  background-color: #ffffff !important;
  color: #374151 !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 0.65rem 1rem !important;
  font-size: 0.9rem !important;
  font-family: inherit !important;
  cursor: pointer;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.75rem center !important;
  background-size: 16px 12px !important;
  padding-right: 2.5rem !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

#appointment_modal select:focus,
#appointment_modal1 select:focus,
.appointment-modal-redesign select:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
  outline: none !important;
}

#appointment_modal select:hover,
#appointment_modal1 select:hover {
  border-color: #d1d5db !important;
}

/* Options: SOLID white, no transparency ever */
#appointment_modal select option,
#appointment_modal1 select option,
.appointment-modal-redesign select option {
  background-color: #ffffff !important;
  color: #374151 !important;
  padding: 8px 12px !important;
  font-size: 0.9rem !important;
}

/* Global NiceSelect duplicate cleanup */
select + .nice-select + .nice-select,
.nice-select + .nice-select,
.modal .nice-select {
  display: none !important;
}

/* jQuery UI datepicker z-index for modals */
#ui-datepicker-div {
  z-index: 100001 !important;
}

/* ============================================
   RESPONSIVE — TABLET (≤991px)
   ============================================ */
@media (max-width: 991px) {
  .appointment-modal-redesign .modal-body {
    padding: 1.5rem;
  }

  .appointment-steps .step-label {
    font-size: 0.65rem;
  }

  .appointment-steps .step-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .appointment-modal-redesign .modal-title {
    font-size: 1.15rem;
  }

  .appointment-modal-redesign .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.15rem;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (≤767px)
   ============================================ */
@media (max-width: 767px) {
  #appointment_modal .modal-dialog,
  #appointment_modal1 .modal-dialog {
    margin: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }

  .appointment-modal-redesign {
    border-radius: 14px;
  }

  .appointment-modal-redesign .modal-header {
    padding: 1rem 1.25rem;
  }

  .appointment-modal-redesign .modal-title {
    font-size: 1.05rem;
  }

  .appointment-modal-redesign .modal-body {
    padding: 1.25rem;
  }

  /* Steps in a row but compact */
  .appointment-steps {
    padding: 0;
    margin-bottom: 1.25rem;
    gap: 0.25rem;
  }

  .appointment-steps::before {
    top: 18px;
    left: 15%;
    right: 15%;
    height: 2px;
  }

  .appointment-steps .step-icon {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .appointment-steps .step-label {
    font-size: 0.6rem;
    max-width: 55px;
    word-wrap: break-word;
  }

  .appointment-modal-redesign .form-label {
    font-size: 0.85rem;
  }

  .appointment-modal-redesign .form-select,
  .appointment-modal-redesign .form-control {
    font-size: 0.875rem;
    padding: 0.6rem 0.85rem;
  }

  .appointment-modal-redesign .form-select {
    padding-right: 2.25rem;
  }

  /* Stack buttons vertically on mobile */
  .appointment-modal-redesign .d-flex {
    flex-direction: column-reverse !important;
  }

  .appointment-modal-redesign .d-flex .btn,
  .appointment-modal-redesign .d-grid .btn {
    width: 100%;
  }

  .appointment-modal-redesign .btn {
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
  }

  /* Make row columns stack on mobile */
  .appointment-modal-redesign .row .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #appointment_modal .select2-container--default .select2-selection--single,
  #appointment_modal1 .select2-container--default .select2-selection--single {
    height: 42px;
    line-height: 38px;
  }

  #appointment_modal .select2-container--default .select2-selection--single .select2-selection__rendered,
  #appointment_modal1 .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
    font-size: 0.875rem;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
  #appointment_modal .modal-dialog,
  #appointment_modal1 .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }

  .appointment-modal-redesign .modal-header {
    padding: 0.875rem 1rem;
  }

  .appointment-modal-redesign .modal-title {
    font-size: 0.95rem;
  }

  .appointment-modal-redesign .modal-title i {
    font-size: 0.9rem;
  }

  .appointment-modal-redesign .modal-body {
    padding: 1rem;
  }

  .appointment-steps .step-icon {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
    border-width: 2px;
  }

  .appointment-steps .step-label {
    font-size: 0.55rem;
    max-width: 48px;
  }

  .appointment-modal-redesign .form-label {
    font-size: 0.8rem;
  }

  .appointment-modal-redesign .form-label i {
    display: none;
  }

  .appointment-modal-redesign .form-select,
  .appointment-modal-redesign .form-control {
    font-size: 0.85rem;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
  }

  .appointment-modal-redesign .form-select {
    padding-right: 2rem;
    background-size: 14px 10px;
  }

  .appointment-modal-redesign .input-group-text {
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 8px 0 0 8px;
  }

  .appointment-modal-redesign .input-group .form-control {
    border-radius: 0 8px 8px 0;
  }

  .appointment-modal-redesign .btn {
    font-size: 0.825rem;
    padding: 0.55rem 0.875rem;
    border-radius: 8px;
  }
}

/* ============================================
   LOADING / SUCCESS STATES
   ============================================ */
.appointment-field.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.appointment-field.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 3px solid #e5e7eb;
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: apptSpin 0.8s linear infinite;
  z-index: 10;
}

@keyframes apptSpin {
  to { transform: rotate(360deg); }
}

.appointment-field.success .form-select,
.appointment-field.success .form-control {
  border-color: #16a34a;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2316a34a' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 16px;
  padding-right: 2.5rem;
}

/* ============================================
   MODAL SIZING
   ============================================ */
@media (min-width: 576px) {
  #appointment_modal1 .modal-dialog {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  #appointment_modal .modal-dialog {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   LAWYER SHOW — BOOK APPOINTMENT TAB
   ============================================ */
#book_appointment .form-control,
#book_appointment .form-select,
#book_appointment select {
  background-color: #ffffff !important;
  color: #374151 !important;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

#book_appointment .form-control:focus,
#book_appointment .form-select:focus,
#book_appointment select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  outline: none;
}

#book_appointment select option {
  background-color: #ffffff !important;
  color: #374151 !important;
}

#book_appointment .nice-select {
  display: none !important;
}

#book_appointment select {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
}