/* ==========================================
   12 HAJJ Landing Page - Custom Styles
   ========================================== */

/* CSS Variables / Color Palette */
:root {
  --primary-gold: #d4a84b;
  --dark-gold: #b8943f;
  --light-cream: #f5e6c8;
  --dark-gray: #2d2d2d;
  --white: #ffffff;
  --black: #000000;
  --light-gray: #f8f9fa;
  --font-family: "Prompt", sans-serif;
}

/* Global Styles */
body {
  font-family: "Prompt", sans-serif;
  background-color: var(--light-gray);
  color: var(--black);
  padding-top: 80px;
}

/* Thai text */
body[lang="th"],
.thai-text {
  font-family: "Prompt", sans-serif;
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.navbar {
  background-color: var(--white) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  color: var(--black);
}

.navbar-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-container {
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--black);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-gold);
}

.flag-icon,
.currency-symbol {
  font-size: 1.2rem;
}

.btn-sign-in {
  border: 2px solid var(--primary-gold);
  border-radius: 25px;
  padding: 8px 20px !important;
  color: var(--primary-gold) !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-sign-in:hover {
  background-color: var(--primary-gold);
  color: var(--white) !important;
}

.user-avatar {
  color: var(--dark-gray);
}

/* Language and Currency Dropdowns */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle::after {
  margin-left: 0.255em;
}

.dropdown-menu {
  border: 1px solid var(--primary-gold);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--light-cream);
  color: var(--dark-gold);
}

.dropdown-item .flag-icon {
  margin-right: 8px;
}

/* ==========================================
   HERO SECTION - ON DEMAND TRIP
   ========================================== */
.hero-section {
  background-color: var(--white);
  min-height: 60vh;
}

.hero-section h1 {
  color: var(--primary-gold);
  font-weight: 700;
}

/* Trip Form Container */
.trip-form-container {
  background-color: var(--primary-gold);
  border-radius: 20px;
  padding: 24px;
  max-width: 1200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Inner form container with cream background */
.trip-form-inner {
  background-color: var(--light-cream);
  border-radius: 12px;
  padding: 16px;
}

/* Form Elements */
.custom-select {
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  background-color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
}

/* Date Input Wrapper */
.date-input-wrapper {
  position: relative;
  cursor: pointer;
}

.date-input-wrapper .form-control {
  padding-right: 35px;
  cursor: pointer;
}

.date-input {
  position: relative;
  cursor: pointer;
}

/* Hide default calendar icon for date inputs */
.date-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.calendar-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-gold);
  font-size: 1.1rem;
  pointer-events: auto;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
}

.calendar-icon:hover {
  color: var(--dark-gold);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.form-select,
.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 8px 12px;
}

.form-select:focus,
.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 168, 75, 0.25);
}

/* Radio button styling */
.form-check-input:checked {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
}

/* Badge styling for destinations */
.badge {
  font-weight: 500;
  font-size: 0.85rem;
}

/* Search Button */
.btn-search {
  background-color: var(--dark-gray) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
}

.btn-search:hover {
  background-color: var(--black) !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Extended Fields Animation */
#extendedFields {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease-out,
    opacity 0.3s ease-out;
  opacity: 0;
}

#extendedFields.show {
  max-height: 300px;
  opacity: 1;
  overflow: visible;
}

/* Activity Dropdown */
.activity-dropdown-menu {
  min-width: 280px;
  max-height: 320px;
  overflow-y: auto;
}

.activity-dropdown-menu .form-check-label {
  cursor: pointer;
  font-size: 0.9rem;
}

.activity-dropdown-menu .form-check-input:checked + .form-check-label {
  font-weight: 600;
  color: #d4a84b;
}

/* Trip Planner Toggle Link */
#tripPlannerToggle {
  color: #d4a84b !important;
  background-color: #ffffff !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  padding: 14px 28px !important;
  border-radius: 30px !important;
  display: inline-block !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border: 3px solid #d4a84b !important;
  font-size: 17px !important;
  letter-spacing: 0.5px !important;
}

/* Validation Error Highlight */
.validation-error {
  border: 2px solid #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
}

#tripPlannerToggle:hover {
  color: #ffffff !important;
  background-color: #d4a84b !important;
  text-decoration: none !important;
  box-shadow: 0 6px 16px rgba(212, 168, 75, 0.4) !important;
  transform: translateY(-3px) scale(1.05) !important;
  border-color: #d4a84b !important;
}

/* ==========================================
   PACKAGE CARDS (Ready Package & Sheikh)
   ========================================== */
.ready-package-section,
.sheikh-section {
  padding: 4rem 0;
}

.ready-package-section {
  background-color: var(--light-gray);
}

.sheikh-section {
  background-color: var(--white);
}

.package-card {
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background-color: var(--white);
  height: 100%;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Package Image Wrapper */
.package-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.package-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  border-radius: 20px 20px 0 0;
}

/* Price Tag - Pill Style (Top Left) */
.price-tag-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--primary-gold);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
}

/* Logo Icon - Top Right (Circle) */
.package-logo-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--black);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 8px;
}

.package-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Type Badge - Dark (Bottom Right of Image) */
.type-badge-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
}

/* Package Title Bar - Gold bar below image */
.package-title-bar {
  background-color: var(--primary-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}

.package-title-bar .title-text {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.package-title-bar .duration-text {
  background-color: var(--white);
  color: var(--primary-gold);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Legacy Badge Styles */
.title-badge-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: var(--primary-gold);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  z-index: 2;
}

.duration-badge-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: var(--primary-gold);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 2;
}

/* Legacy styles for backward compatibility */
.price-tag {
  background-color: var(--primary-gold);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
}

.duration-badge {
  background-color: var(--primary-gold);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Type Badge (Hajj/Umrah) */
.badge.bg-dark {
  background-color: var(--dark-gray) !important;
  padding: 6px 12px;
  font-size: 0.85rem;
}

/* Card Body */
.package-card .card-body {
  padding: 1.25rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-gray);
}

/* Amenities Row - Icons and Stars */
.amenities-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.amenities-icons {
  display: flex;
  gap: 8px;
  color: var(--primary-gold);
  font-size: 1.1rem;
}

.amenities-icons i {
  color: var(--primary-gold);
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 2px;
}

.star-rating i {
  color: var(--primary-gold);
  font-size: 1rem;
}

.star-rating i.bi-star {
  color: #ccc;
}

/* Legacy Amenities */
.amenities {
  font-size: 1.2rem;
  color: var(--dark-gray);
}

.amenities i {
  margin-right: 0.5rem;
}

/* Trip Details */
.trip-details {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.trip-details p {
  margin-bottom: 0.25rem;
}

.trip-details i {
  color: var(--primary-gold);
  margin-right: 6px;
}

/* Operator Section */
.operator-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}

.operator-info {
  flex: 1;
}

.operator-label {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.operator-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 0;
}

/* View Button */
.btn-view {
  background-color: var(--white) !important;
  border: 2px solid var(--dark-gray) !important;
  color: var(--dark-gray) !important;
  padding: 8px 24px;
  border-radius: 25px !important;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background-color: var(--dark-gray) !important;
  color: var(--white) !important;
}

/* Sheikh Info */
.sheikh-info {
  background-color: var(--light-cream);
  padding: 0.75rem;
  border-radius: 8px;
}

.sheikh-info i {
  color: var(--primary-gold);
}

/* View Button - Outline Dark */
.btn-outline-dark {
  border-color: var(--dark-gray);
  color: var(--dark-gray);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: var(--dark-gray);
  border-color: var(--dark-gray);
  color: var(--white);
}

/* ==========================================
   HORIZONTAL SCROLL FOR CAROUSELS
   ========================================== */
.scroll-horizontal {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  scroll-behavior: smooth !important;
  gap: 1.5rem !important;
}

.scroll-horizontal > .col-lg-4,
.scroll-horizontal > .col-md-6 {
  flex: 0 0 auto;
  width: 350px;
  max-width: 350px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scroll-horizontal::-webkit-scrollbar {
  height: 8px;
}

.scroll-horizontal::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.scroll-horizontal::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 10px;
}

.scroll-horizontal::-webkit-scrollbar-thumb:hover {
  background: var(--dark-gold);
}

/* ==========================================
   FOOTER TABS (SEPARATE SECTION)
   ========================================== */
.footer-tabs {
  background: linear-gradient(135deg, #c9a961 0%, #d4a84b 100%);
  padding: 30px 0;
  border-radius: 50px 50px 0 0;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: #1a1a1a;
  background-image: url("../images/footerbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  position: relative;
  border-radius: 50px 50px 0 0;
  z-index: 2;
  margin-top: -50px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.7);
  z-index: 0;
  border-radius: 50px 50px 0 0;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer-tab-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 5px;
}

.footer-about-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  text-align: center;
}

.footer-separator-line {
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1;
}

.footer-icon-box {
  background-color: var(--white);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
}

.footer-icon-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-icon-box img {
  max-width: 65px;
  max-height: 65px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Footer Content */
.footer-content {
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 0 !important;
}

.text-gold {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

/* Footer Links - Right Column */
.footer-links-right {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-right li {
  margin-bottom: 10px;
  text-align: right;
}

.footer-links-right a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links-right a:hover {
  color: var(--primary-gold);
  padding-right: 5px;
}

/* Footer Logo */
.footer-logo {
  padding: 0;
}

.footer-logo img {
  margin-bottom: 15px;
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-logo h3 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Footer Bottom */
.footer-bottom {
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 25px 0 !important;
}

.footer-bottom-text {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-bottom img {
  filter: brightness(1);
  opacity: 0.9;
}

.footer-divider-left {
  width: 100px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-left: 0;
  margin-right: auto;
}

.footer-divider-right {
  width: 100px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 767px) {
  .footer-divider-left,
  .footer-divider-right {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Mobile Devices (< 576px) */
@media (max-width: 575.98px) {
  body {
    padding-top: 60px;
  }

  .hero-section h1 {
    font-size: 1.75rem;
  }

  .trip-form-container {
    padding: 16px;
  }

  .trip-form-inner {
    padding: 12px;
  }

  .package-card img {
    height: 200px;
  }

  .card-title {
    font-size: 1rem;
  }

  .footer-logo svg {
    width: 100px;
    height: 100px;
  }

  .footer-bottom .row > div {
    margin-bottom: 1rem;
  }

  .footer-about-text {
    font-size: 1.2rem;
  }

  .footer-separator-line {
    font-size: 1.8rem;
  }

  .footer-icon-box {
    width: 70px;
    height: 70px;
    padding: 12px;
    border-radius: 12px;
  }

  .footer-icon-box img {
    max-width: 45px;
    max-height: 45px;
  }
}

/* Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .trip-form-container {
    padding: 20px;
  }

  .package-card img {
    height: 220px;
  }
}

/* Medium devices (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .package-card img {
    height: 230px;
  }
}

/* Large devices (992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 70vh;
  }

  .package-card img {
    height: 250px;
  }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-primary-gold {
  color: var(--primary-gold);
}

.bg-primary-gold {
  background-color: var(--primary-gold);
}

.text-dark-gold {
  color: var(--dark-gold);
}

.bg-dark-gold {
  background-color: var(--dark-gold);
}

.text-light-cream {
  color: var(--light-cream);
}

.bg-light-cream {
  background-color: var(--light-cream);
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-gold);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ==========================================
   LOGIN PAGE STYLES
   ========================================== */
.login-page {
  padding-top: 0;
  background: linear-gradient(
    135deg,
    var(--light-cream) 0%,
    var(--white) 50%,
    var(--light-gray) 100%
  );
  min-height: 100vh;
}

.login-page .navbar {
  position: relative;
}

/* Auth Page Navbar */
.auth-navbar {
  padding: 0.75rem 0;
}

.auth-navbar .container {
  flex-wrap: nowrap;
}

.auth-logo {
  height: 40px;
  width: auto;
}

.auth-logo-text {
  height: 45px;
  width: auto;
}

/* .btn-back-home {
  background-color: transparent !important;
  border: 2px solid var(--primary-gold) !important;
  color: var(--primary-gold) !important;
  padding: 8px 16px !important;
  border-radius: 25px !important;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px;
} */

/* .btn-back-home:hover {
  background-color: var(--primary-gold);
  color: var(--white);
  text-decoration: none;
}

.btn-back-home i {
  font-size: 0.9rem;
} */

/* Auth Navbar Mobile Responsive */
@media (max-width: 575.98px) {
  .auth-navbar {
    padding: 0.5rem 0;
  }

  .auth-navbar .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .auth-logo {
    height: 30px;
  }

  .auth-logo-text {
    height: 35px;
  }

  .btn-back-home {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .btn-back-home .back-text {
    display: none;
  }

  .btn-back-home i {
    margin-right: 0;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .auth-logo {
    height: 35px;
  }

  .auth-logo-text {
    height: 40px;
  }

  .btn-back-home {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}

.login-section {
  padding: 2rem 0;
}

.login-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 168, 75, 0.1);
}

.login-header h2 {
  color: var(--dark-gray);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.login-header p {
  font-size: 0.95rem;
}

.login-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--dark-gold) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.login-icon-circle i {
  font-size: 2.5rem;
  color: var(--white);
}

.login-form {
  margin-top: 2rem;
}

.login-form .form-group label {
  font-weight: 500;
  color: var(--dark-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.login-form .input-group-text {
  background-color: var(--light-cream);
  border: 1px solid #ddd;
  border-right: none;
  color: var(--primary-gold);
}

.login-form .form-control {
  border-left: none;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.login-form .form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: none;
}

.login-form .form-control:focus + .input-group-append .btn,
.login-form .input-group:focus-within .input-group-text {
  border-color: var(--primary-gold);
}

.login-form .input-group-append .btn {
  border: 1px solid #ddd;
  border-left: none;
  background-color: var(--white);
  color: var(--dark-gray);
}

.login-form .input-group-append .btn:hover {
  color: var(--primary-gold);
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
}

.custom-control-label {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.forgot-password-link {
  color: var(--primary-gold);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.forgot-password-link:hover {
  color: var(--dark-gold);
  text-decoration: underline;
}

.btn-login {
  background: linear-gradient(
    135deg,
    var(--primary-gold) 0%,
    var(--dark-gold) 100%
  );
  color: var(--white);
  border: none;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-login:hover {
  background: linear-gradient(
    135deg,
    var(--dark-gold) 0%,
    var(--primary-gold) 100%
  );
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 75, 0.4);
}

.login-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.login-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ddd;
}

.login-divider span {
  background-color: var(--white);
  padding: 0 1rem;
  color: #999;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

.social-login {
  display: flex;
  gap: 1rem;
}

.btn-social {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-google {
  background-color: var(--white);
  border: 1px solid #ddd;
  color: var(--dark-gray);
}

.btn-google:hover {
  background-color: #f8f9fa;
  border-color: #ccc;
}

.btn-facebook {
  background-color: #1877f2;
  border: 1px solid #1877f2;
  color: var(--white);
}

.btn-facebook:hover {
  background-color: #166fe5;
  border-color: #166fe5;
  color: var(--white);
}

.register-link p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.register-link a {
  color: var(--primary-gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.register-link a:hover {
  color: var(--dark-gold);
  text-decoration: underline;
}

/* ==========================================
   REGISTER PAGE STYLES
   ========================================== */
.register-section {
  padding: 3rem 0;
}

.register-card {
  max-width: 600px;
  margin: 0 auto;
}

.register-card .form-text {
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.terms-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 500;
}

.terms-link:hover {
  color: var(--dark-gold);
  text-decoration: underline;
}

/* Password strength indicator (optional future use) */
.password-strength {
  height: 4px;
  border-radius: 2px;
  margin-top: 0.5rem;
  background-color: #e9ecef;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}

.password-strength-bar.weak {
  width: 33%;
  background-color: #dc3545;
}

.password-strength-bar.medium {
  width: 66%;
  background-color: #ffc107;
}

.password-strength-bar.strong {
  width: 100%;
  background-color: #28a745;
}

/* Login & Register Page Responsive */
@media (max-width: 575.98px) {
  .login-card {
    padding: 1.5rem;
    margin: 1rem;
  }

  .login-icon-circle {
    width: 60px;
    height: 60px;
  }

  .login-icon-circle i {
    font-size: 1.8rem;
  }

  .login-header h2 {
    font-size: 1.5rem;
  }

  .social-login {
    flex-direction: column;
  }

  .login-section .min-vh-100 {
    min-height: auto !important;
    padding: 2rem 0;
  }

  .register-section {
    padding: 1.5rem 0;
  }

  .register-card .row .col-md-6 {
    margin-bottom: 0;
  }
}

/* ==========================================
   DESIGN TRIP PAGE STYLES
   ========================================== */
.design-trip-page {
  background-color: var(--light-gray);
  min-height: 100vh;
  padding-top: 0;
}

/* Design Trip Navbar */
.design-trip-navbar {
  padding: 0.75rem 0;
  background-color: var(--white) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.design-trip-logo {
  height: 40px;
  width: auto;
}

.design-trip-logo-text {
  height: 45px;
  width: auto;
}

.btn-back-home {
  background-color: transparent !important;
  border: 2px solid var(--primary-gold) !important;
  color: var(--primary-gold) !important;
  padding: 0.5rem 1rem !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  border-radius: 8px;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.btn-back-home:hover {
  background-color: var(--primary-gold) !important;
  color: var(--white) !important;
  text-decoration: none !important;
}

.design-trip-section {
  padding: 2rem 0 3rem;
}

/* Form Row Spacing */
.form-row-spaced {
  margin-bottom: 1.25rem;
}

.form-row-spaced:last-child {
  margin-bottom: 0;
}

/* Progress Steps Wrapper */
.progress-steps-wrapper {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Progress Steps */
.progress-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.step-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #999;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background-color: var(--primary-gold);
  color: var(--white);
}

.progress-step.active .step-label {
  color: var(--primary-gold);
  font-weight: 600;
}

.progress-step.completed .step-number {
  background-color: var(--primary-gold);
  color: var(--white);
}

.progress-step.completed .step-label {
  color: var(--dark-gray);
}

.progress-connector {
  flex: 1;
  height: 2px;
  background-color: #e9ecef;
  margin: 0 1rem;
  max-width: 80px;
  transition: all 0.3s ease;
}

.progress-connector.completed {
  background-color: var(--primary-gold);
}

/* Form Container */
.design-trip-form-container {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* Form Section Header */
.form-section-header {
  margin-bottom: 1.5rem;
}

.form-section-header h4 {
  color: var(--dark-gray);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Form Labels */
.design-trip-page .form-label {
  font-weight: 500;
  color: var(--dark-gray);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

/* Design Select - Uniform Input Style */
.design-select {
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 1rem;
  font-size: 0.9rem;
  background-color: var(--white);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
}

.design-select:focus,
.design-select:hover {
  border-color: var(--primary-gold);
  outline: none;
}

.design-select i {
  color: #999;
  font-size: 0.8rem;
}

select.design-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

input.design-select {
  background-color: var(--white);
}

input[type="date"].design-select {
  padding-right: 1rem;
}

/* Toggle Button Group */
.toggle-btn-group {
  display: flex;
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.toggle-btn {
  flex: 1;
  border: none;
  background-color: var(--white);
  color: var(--dark-gray);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0 0.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.toggle-btn:not(:last-child) {
  border-right: 1px solid #ddd;
}

.toggle-btn.active {
  background-color: var(--primary-gold);
  color: var(--white);
}

.toggle-btn:hover:not(.active) {
  background-color: var(--light-cream);
}

.toggle-btn i {
  margin-right: 0.35rem;
}

/* Dropdown Menu for Guests/Cities */
.dropdown-menu-guest {
  min-width: 280px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem !important;
}

.guest-row {
  padding: 0.5rem 0;
}

.guest-type {
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.stepper-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-stepper-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  background-color: var(--white);
  color: var(--primary-gold);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.btn-stepper-circle:hover {
  background-color: var(--primary-gold);
  color: var(--white);
}

.stepper-value {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-gray);
  min-width: 24px;
  text-align: center;
}

/* Form Navigation */
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.btn-back {
  background-color: var(--white);
  border: 2px solid #ddd;
  color: var(--dark-gray);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.btn-back:hover {
  border-color: var(--dark-gray);
  background-color: var(--light-gray);
}

.btn-continue {
  background-color: var(--primary-gold);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.btn-continue:hover {
  background-color: var(--dark-gold);
  color: var(--white);
}

/* Price Summary Card */
.price-summary-card,
.request-summary-card {
  background-color: var(--light-cream);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  flex-direction: column;
}

.price-icon,
.request-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.price-icon i,
.request-icon i {
  font-size: 2rem;
  color: var(--white);
}

.price-summary-card h5,
.request-summary-card h5 {
  color: var(--dark-gray);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.estimated-price {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 8px;
  display: inline-block;
}

.price-label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.price-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

/* Design Trip Page Responsive */
@media (max-width: 991.98px) {
  .progress-step {
    flex-direction: column;
    text-align: center;
  }

  .step-label {
    font-size: 0.75rem;
  }

  .progress-connector {
    max-width: 50px;
  }
}

@media (max-width: 767.98px) {
  .design-trip-page {
    padding-top: 0;
  }

  .design-trip-navbar {
    padding: 0.5rem 0;
  }

  .design-trip-logo {
    height: 32px;
  }

  .design-trip-logo-text {
    height: 36px;
  }

  .btn-back-home {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }

  .btn-back-home .back-text {
    display: none;
  }

  .design-trip-section {
    padding: 1rem 0 2rem;
  }

  .form-row-spaced {
    margin-bottom: 1rem;
  }

  .progress-steps-wrapper {
    padding: 1rem;
    margin: 0 0.5rem 1rem;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .step-label {
    font-size: 0.7rem;
  }

  .progress-connector {
    max-width: 30px;
    margin: 0 0.5rem;
  }

  .design-trip-form-container {
    padding: 1.25rem;
    margin: 0 0.5rem;
    border-radius: 10px;
  }

  .toggle-btn {
    font-size: 0.75rem;
    padding: 0 0.5rem;
  }

  .toggle-btn i {
    display: none;
  }

  .form-navigation {
    flex-direction: column-reverse;
    gap: 0.75rem;
  }

  .btn-back,
  .btn-continue {
    width: 100%;
    justify-content: center;
  }

  .btn-continue {
    margin-left: 0;
  }
}

@media (max-width: 575.98px) {
  .progress-steps {
    justify-content: space-between;
  }

  .progress-connector {
    flex: 1;
    max-width: none;
  }

  .design-select {
    height: 40px;
    font-size: 0.85rem;
  }

  .toggle-btn-group {
    height: 40px;
  }
}

/* ==========================================
   DESIGN TRIP - PROGRESS STEPS WITH ICONS
   ========================================== */
.progress-steps-icons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
}

.progress-step-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
}

.step-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.step-icon-circle i {
  font-size: 1.5rem;
  color: #999;
  transition: all 0.3s ease;
}

.progress-step-icon .step-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 100px;
}

/* Active State */
.progress-step-icon.active .step-icon-circle {
  background-color: var(--primary-gold);
}

.progress-step-icon.active .step-icon-circle i {
  color: var(--white);
}

.progress-step-icon.active .step-label {
  color: var(--dark-gray);
}

/* Completed State */
.progress-step-icon.completed .step-icon-circle {
  background-color: var(--primary-gold);
}

.progress-step-icon.completed .step-icon-circle i {
  color: var(--white);
}

.progress-step-icon.completed .step-label {
  color: var(--dark-gray);
}

/* Progress Connector Line */
.progress-connector-line {
  flex: 1;
  height: 2px;
  background-color: #e9ecef;
  margin: 30px 1rem 0;
  max-width: 100px;
  transition: all 0.3s ease;
}

.progress-connector-line.completed {
  background-color: var(--primary-gold);
}

/* ==========================================
   DESIGN TRIP - LABEL ICONS
   ========================================== */
.label-icon {
  color: var(--primary-gold);
  margin-right: 0.4rem;
  font-size: 0.9rem;
}

/* ==========================================
   DESIGN TRIP - COST BREAKDOWN (Step 2)
   ========================================== */
.cost-breakdown-list {
  margin-bottom: 1.5rem;
}

.cost-item {
  background-color: var(--white);
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cost-item:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 2px 8px rgba(212, 168, 75, 0.1);
}

.cost-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
}

.cost-item-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cost-icon {
  font-size: 1.2rem;
  color: var(--primary-gold);
  width: 24px;
}

.cost-name {
  font-weight: 500;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.cost-item-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cost-value {
  font-weight: 600;
  color: var(--primary-gold);
  font-size: 0.95rem;
}

.collapse-icon {
  color: #999;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.collapse-icon.rotated {
  transform: rotate(180deg);
}

.cost-details {
  border-top: 1px solid #eee;
}

.cost-detail-content {
  padding: 1rem 1.25rem;
  padding-left: 3.5rem;
  background-color: #fafafa;
}

/* Total Cost Bar */
.total-cost-bar {
  background-color: #1a3a5c;
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-weight: 600;
  font-size: 1rem;
}

.total-value {
  font-weight: 700;
  font-size: 1.25rem;
}

/* ==========================================
   DESIGN TRIP - REQUEST FORM (Step 3)
   ========================================== */
.request-form {
  max-width: 500px;
  margin: 0 auto;
}

.input-icon-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 1rem;
}

.design-input-icon {
  height: 50px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding-left: 3rem;
  font-size: 0.95rem;
  background-color: var(--white);
  transition: all 0.2s ease;
  width: 100%;
}

.design-input-icon:focus {
  border-color: var(--primary-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.1);
}

.design-input-icon::placeholder {
  color: #aaa;
}

/* ==========================================
   DESIGN TRIP - RESPONSIVE (New Elements)
   ========================================== */
@media (max-width: 767.98px) {
  .progress-steps-icons {
    max-width: 100%;
  }

  .step-icon-circle {
    width: 45px;
    height: 45px;
  }

  .step-icon-circle i {
    font-size: 1.1rem;
  }

  .progress-step-icon .step-label {
    font-size: 0.6rem;
    max-width: 70px;
  }

  .progress-connector-line {
    margin: 22px 0.5rem 0;
    max-width: 60px;
  }

  .cost-item-header {
    padding: 0.85rem 1rem;
  }

  .cost-icon {
    font-size: 1rem;
  }

  .cost-name {
    font-size: 0.85rem;
  }

  .cost-value {
    font-size: 0.85rem;
  }

  .cost-detail-content {
    padding-left: 2.5rem;
  }

  .total-cost-bar {
    padding: 0.85rem 1rem;
  }

  .total-label {
    font-size: 0.9rem;
  }

  .total-value {
    font-size: 1.1rem;
  }

  .request-form {
    max-width: 100%;
  }

  .design-input-icon {
    height: 46px;
  }

  .label-icon {
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .step-icon-circle {
    width: 40px;
    height: 40px;
  }

  .step-icon-circle i {
    font-size: 1rem;
  }

  .progress-connector-line {
    margin: 20px 0.25rem 0;
    max-width: none;
    flex: 1;
  }

  .progress-step-icon .step-label {
    font-size: 0.55rem;
    max-width: 60px;
  }
}

/* ==========================================
   SUCCESS MODAL STYLES
   ========================================== */
.success-modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.success-icon-wrapper {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.success-icon-wrapper i {
  font-size: 3rem;
  color: var(--white);
}

.success-modal-content .modal-title {
  color: var(--dark-gray);
  font-weight: 700;
  font-size: 1.5rem;
}

.success-modal-content .modal-body p {
  line-height: 1.6;
}

.success-modal-content .modal-body p strong {
  color: var(--primary-gold);
}

.btn-success-modal {
  background-color: var(--primary-gold);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-success-modal:hover {
  background-color: var(--dark-gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 168, 75, 0.4);
}

.btn-success-modal i {
  font-size: 1.1rem;
}

@media (max-width: 575.98px) {
  .success-modal-content .modal-body {
    padding: 2rem 1.5rem !important;
  }

  .success-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .success-icon-wrapper i {
    font-size: 2.5rem;
  }

  .success-modal-content .modal-title {
    font-size: 1.25rem;
  }

  .btn-success-modal {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   SHEIKH VIEW PROFILE PAGE
   ========================================== */

/* Back button */
.btn-back-sheikh {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--primary-gold) !important;
  border: 2px solid var(--primary-gold) !important;
  border-radius: 20px !important;
  padding: 6px 18px !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}
.btn-back-sheikh:hover {
  background: var(--primary-gold) !important;
  color: var(--white) !important;
  text-decoration: none;
}

/* Page wrapper */
.svp-page {
  background-color: var(--light-gray);
  min-height: 100vh;
  padding-bottom: 60px;
}

/* Breadcrumb */
.svp-breadcrumb {
  padding: 16px 0 0;
  font-size: 0.82rem;
  color: #888;
  background: transparent;
  margin-bottom: 0;
}
.svp-breadcrumb a {
  color: var(--primary-gold);
  text-decoration: underline;
}
.svp-breadcrumb .bi-chevron-right {
  font-size: 0.7rem;
  margin: 0 4px;
  vertical-align: middle;
}

/* Top profile card (Airbnb-style two-column) */
.svp-top-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 32px 36px;
  margin-top: 20px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Left column: avatar + pills */
.svp-left-col {
  flex: 0 0 190px;
  text-align: center;
}
.svp-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}
.svp-avatar-wrap img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-gold);
  box-shadow: 0 4px 16px rgba(212, 168, 75, 0.25);
}
.svp-verified-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--primary-gold);
  color: var(--white);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.svp-stats-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.svp-stat-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--dark-gray);
  background: var(--light-cream);
  border-radius: 20px;
  padding: 6px 12px;
}
.svp-stat-pill i {
  color: var(--primary-gold);
}

/* Right column: info */
.svp-right-col {
  flex: 1;
  min-width: 260px;
}
.svp-greeting {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 4px;
}
.svp-joined {
  font-size: 0.83rem;
  color: #888;
  margin-bottom: 14px;
}
.svp-joined span {
  color: var(--primary-gold);
  font-weight: 600;
}
.svp-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.svp-stars {
  color: var(--primary-gold);
  font-size: 1rem;
  letter-spacing: 1px;
}
.svp-rating-score {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-gray);
}
.svp-rating-count {
  font-size: 0.8rem;
  color: #888;
}
.svp-badge-verified {
  background: #e8f5e9;
  color: #388e3c;
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.svp-bio {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.75;
  border-left: 3px solid var(--primary-gold);
  background: #fffdf7;
  padding: 12px 14px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 16px;
}
.svp-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.svp-fact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: #444;
}
.svp-fact i {
  color: var(--primary-gold);
}

/* Divider */
.svp-divider {
  border: none;
  border-top: 1px solid #e8e0d0;
  margin: 28px 0;
}

/* Section titles */
.svp-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.svp-section-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--primary-gold), transparent);
  border-radius: 2px;
}
.svp-section-title i {
  color: var(--primary-gold);
}

/* Stats grid */
.svp-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.svp-stat-box {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 18px 14px;
  text-align: center;
  border-top: 3px solid var(--primary-gold);
}
.svp-stat-box .stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1.1;
}
.svp-stat-box .stat-label {
  font-size: 0.73rem;
  color: #777;
  margin-top: 4px;
}

/* Expertise tags */
.svp-expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.svp-tag {
  background: var(--light-cream);
  color: var(--dark-gray);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.81rem;
  font-weight: 500;
  border: 1px solid #e0c98a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svp-tag i {
  color: var(--primary-gold);
}

/* Credentials list */
.svp-credentials-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.svp-credentials-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: #444;
  background: var(--white);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}
.svp-credentials-list li i {
  color: var(--primary-gold);
  font-size: 1rem;
}

/* Listing cards row */
.svp-listings-row {
  display: flex !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
  margin-bottom: 28px !important;
}
.svp-listing-card {
  background: var(--white) !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden !important;
  flex: 1 1 220px !important;
  max-width: 230px !important;
  min-width: 230px !important;
  height: 260px !important;
  cursor: pointer !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.svp-listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(212, 168, 75, 0.2);
}
.svp-listing-img {
  width: 100% !important;
  height: 150px !important;
  object-fit: cover !important;
}
.svp-listing-body {
  padding: 12px 14px;
}
.svp-listing-type {
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.svp-listing-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 6px;
}
.svp-listing-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
}
.svp-listing-rating {
  color: var(--primary-gold);
  font-weight: 600;
}
.svp-listing-price {
  color: var(--dark-gray);
  font-weight: 700;
}

/* Reviews */
.svp-rating-summary {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.svp-rating-big-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-gray);
  line-height: 1;
  text-align: center;
  min-width: 70px;
}
.svp-rating-bars {
  flex: 1;
  min-width: 160px;
}
.svp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.svp-review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.svp-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.svp-reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-gold);
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--primary-gold);
}
.svp-reviewer-name {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--dark-gray);
}
.svp-reviewer-date {
  font-size: 0.73rem;
  color: #aaa;
}
.svp-review-stars {
  color: var(--primary-gold);
  font-size: 0.78rem;
  margin-bottom: 6px;
}
.svp-review-text {
  font-size: 0.81rem;
  color: #555;
  line-height: 1.6;
}
.svp-review-trip-badge {
  display: inline-block;
  background: var(--light-cream);
  color: var(--dark-gold);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 10px;
  margin-top: 8px;
}

/* Response rate bar */
.svp-bar-wrap {
  margin-top: 10px;
}
.svp-bar-wrap + .svp-bar-wrap {
  margin-top: 8px;
}
.svp-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: #777;
  margin-bottom: 3px;
}
.svp-bar-track {
  height: 5px;
  background: #f0eadb;
  border-radius: 10px;
  overflow: hidden;
}
.svp-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary-gold), var(--dark-gold));
  border-radius: 10px;
}

/* Sidebar contact card */
.svp-contact-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 26px 22px;
  position: sticky;
  top: 90px;
}
.svp-contact-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 18px;
}
.svp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #f0eadb;
  font-size: 0.83rem;
  color: #444;
}
.svp-contact-item:last-of-type {
  border-bottom: none;
}
.svp-contact-item > i {
  color: var(--primary-gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.svp-contact-item strong {
  display: block;
  font-size: 0.72rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 1px;
}
.btn-book-sheikh {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--white);
  border: none;
  border-radius: 25px;
  padding: 12px 0;
  font-weight: 700;
  font-size: 0.92rem;
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 18px;
  transition:
    opacity 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.btn-book-sheikh:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none;
}
.btn-msg-sheikh {
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  background: transparent;
  border-radius: 25px;
  padding: 10px 0;
  font-weight: 600;
  font-size: 0.88rem;
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 10px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-msg-sheikh:hover {
  background: var(--primary-gold);
  color: var(--white);
  text-decoration: none;
}
.svp-provided-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 18px 0 8px;
}
.svp-provided-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svp-provided-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.81rem;
  color: #555;
  padding: 3px 0;
}
.svp-provided-list li i {
  color: var(--primary-gold);
}

/* Not found message */
.svp-not-found {
  text-align: center;
  padding: 80px 20px;
  color: #888;
}
.svp-not-found i {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .svp-top-card {
    flex-direction: column;
    align-items: center;
    padding: 24px 18px;
    gap: 20px;
  }
  .svp-left-col {
    flex: none;
    width: 100%;
  }
  .svp-greeting {
    font-size: 1.5rem;
    text-align: center;
  }
  .svp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svp-listing-card {
    max-width: 100% !important;
  }
  .svp-contact-card {
    position: static;
  }
}

/* ==========================================
   PACKAGE VIEW PAGE  (pkv-*)
   ========================================== */

.pkv-page {
  background: var(--light-gray);
  min-height: 100vh;
  padding-bottom: 60px;
}

/* Top hero banner */
.pkv-hero {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  margin-bottom: 0;
}
.pkv-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pkv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18),
    rgba(0, 0, 0, 0.62)
  );
  display: flex;
  align-items: flex-end;
  padding: 24px 28px;
}
.pkv-hero-title {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.pkv-hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  margin: 4px 0 0;
}
.pkv-price-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 18px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.pkv-type-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 20px;
}

/* Main card */
.pkv-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 28px 28px;
  margin-top: 20px;
}

/* Section titles */
.pkv-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-cream);
}
.pkv-section-title i {
  color: var(--primary-gold);
}

/* Operator + sheikh row */
.pkv-operator-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--light-cream);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.pkv-operator-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  object-fit: cover;
  flex-shrink: 0;
}
.pkv-operator-avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  background: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pkv-operator-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-gray);
}
.pkv-operator-info small {
  font-size: 0.76rem;
  color: #777;
}
.pkv-operator-stars {
  color: var(--primary-gold);
  font-size: 0.8rem;
  margin: 2px 0;
}
.pkv-operator-link {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--primary-gold);
  text-decoration: underline;
  cursor: pointer;
}

/* Price breakdown table */
.pkv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.pkv-table th {
  font-size: 0.78rem;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 10px;
  border-bottom: 2px solid var(--light-cream);
  text-align: left;
}
.pkv-table th:last-child {
  text-align: right;
}
.pkv-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #f5f0e8;
  color: var(--dark-gray);
  vertical-align: middle;
}
.pkv-table td:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}
.pkv-table tr:last-child td {
  border-bottom: none;
}
.pkv-table .pkv-total-row td {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-gray);
  border-top: 2px solid var(--primary-gold);
  padding-top: 14px;
}
.pkv-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-right: 6px;
  flex-shrink: 0;
}
.pkv-status-included {
  background: #e8f5e9;
  color: #388e3c;
}
.pkv-status-optional {
  border: 2px solid #f0c040;
  color: #f0c040;
  background: transparent;
}
.pkv-desc-cell {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* Amenity icons row */
.pkv-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.pkv-amenity {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--light-cream);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--dark-gray);
  font-weight: 500;
}
.pkv-amenity i {
  color: var(--primary-gold);
  font-size: 0.9rem;
}

/* Trip meta info */
.pkv-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.pkv-meta-item {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: #444;
}
.pkv-meta-item i {
  color: var(--primary-gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.pkv-meta-item strong {
  display: block;
  font-size: 0.72rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sidebar booking card */
.pkv-booking-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 24px 20px;
  position: sticky;
  top: 90px;
}
.pkv-booking-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.pkv-booking-price-label {
  font-size: 0.76rem;
  color: #aaa;
  margin-bottom: 16px;
}
.pkv-booking-divider {
  border: none;
  border-top: 1px solid #f0eadb;
  margin: 14px 0;
}
.pkv-booking-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #555;
  padding: 5px 0;
}
.pkv-booking-item span:last-child {
  font-weight: 600;
  color: var(--dark-gray);
}
.pkv-booking-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-gray);
  border-top: 2px solid var(--primary-gold);
  padding-top: 12px;
  margin-top: 8px;
}
.pkv-booking-total span:last-child {
  color: var(--primary-gold);
  font-size: 1.1rem;
}
.btn-book-package {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--white);
  border: none;
  border-radius: 25px;
  padding: 13px 0;
  font-weight: 700;
  font-size: 0.92rem;
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 16px;
  transition:
    opacity 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.btn-book-package:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none;
}
.btn-enquire-package {
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  background: transparent;
  border-radius: 25px;
  padding: 11px 0;
  font-weight: 600;
  font-size: 0.88rem;
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 8px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-enquire-package:hover {
  background: var(--primary-gold);
  color: var(--white);
  text-decoration: none;
}

/* Highlights list */
.pkv-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.pkv-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  color: #444;
  padding: 5px 0;
  border-bottom: 1px solid #f5f0e8;
}
.pkv-highlights li:last-child {
  border-bottom: none;
}
.pkv-highlights li i {
  color: var(--primary-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

/* View Itinerary Button */
.btn-view-itinerary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  background: transparent;
  border-radius: 25px;
  padding: 10px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  text-decoration: none;
  line-height: 1.4;
}
.btn-view-itinerary:hover,
.btn-view-itinerary:focus {
  background: var(--primary-gold);
  color: var(--white);
  outline: none;
  box-shadow: none;
}

/* Itinerary Modal */
.pkv-itinerary-modal {
  border-radius: 16px !important;
  border: none;
  overflow: hidden;
}
.pkv-itinerary-header {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--white);
  border-bottom: none;
  padding: 16px 24px;
}
.pkv-itinerary-header .close {
  color: var(--white);
  opacity: 0.9;
  text-shadow: none;
}
.pkv-itinerary-header .close:hover {
  opacity: 1;
}
.pkv-itinerary-body {
  padding: 28px 32px;
}
.pkv-itinerary-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}
.pkv-itinerary-meta {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
.pkv-itinerary-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.pkv-itinerary-table thead th {
  background: #f8f5f0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #333;
  padding: 10px 14px;
  border-bottom: 2px solid var(--primary-gold);
  text-align: left;
}
.pkv-itinerary-table tbody td {
  font-size: 0.82rem;
  color: #444;
  padding: 9px 14px;
  border-bottom: 1px solid #eee;
}
.pkv-itinerary-table tbody td:first-child {
  font-weight: 700;
  color: var(--primary-gold);
  width: 60px;
  text-align: center;
}
.pkv-itinerary-table tbody tr:last-child td {
  border-bottom: none;
}
.pkv-itinerary-note {
  font-size: 0.78rem;
  color: #999;
  font-style: italic;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .pkv-hero {
    height: 200px;
  }
  .pkv-hero-title {
    font-size: 1.2rem;
  }
  .pkv-booking-card {
    position: static;
  }
  .pkv-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pkv-itinerary-body {
    padding: 20px 16px;
  }
  .pkv-itinerary-title {
    font-size: 1.1rem;
  }
}

/* Regenerate Button */
.btn-regenerate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  background: transparent;
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  white-space: nowrap;
}
.btn-regenerate:hover,
.btn-regenerate:focus {
  background: var(--primary-gold);
  color: var(--white);
  outline: none;
  box-shadow: none;
}
/* Spin animation for regenerate icon */
@keyframes pkv-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.pkv-spin {
  animation: pkv-spin 0.6s ease;
}

/* ==========================================
   SHEIKH REQUEST CONFIRMATION MODAL
   ========================================== */
.sheikh-request-modal {
  border-radius: 20px !important;
  border: none !important;
  overflow: hidden !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}
.sheikh-request-body {
  padding: 40px 32px 32px;
}
.sheikh-request-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: sheikh-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sheikh-request-icon i {
  font-size: 2.2rem;
  color: var(--white);
}
.sheikh-request-title {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dark-gray);
  margin-bottom: 12px;
}
.sheikh-request-text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 6px;
}
.sheikh-request-text strong {
  color: var(--primary-gold);
}
.sheikh-request-subtext {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 24px;
}
.sheikh-request-btn {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 12px 48px;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.sheikh-request-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: var(--white);
}
@keyframes sheikh-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================================
   PERSONAL INFORMATION FORM (Sidebar)
   ========================================== */
.pkv-personal-info {
  margin-bottom: 16px;
}
.pkv-personal-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark-gray);
  margin-bottom: 14px;
}
.pkv-personal-title i {
  color: var(--primary-gold);
  margin-right: 5px;
}
.pkv-input-group {
  margin-bottom: 12px;
}
.pkv-input-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 4px;
}
.pkv-required {
  color: #e53935;
}
.pkv-input-wrap {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 0 12px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.pkv-input-wrap:focus-within {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.12);
}
.pkv-input-wrap i {
  font-size: 0.95rem;
  color: #aaa;
  margin-right: 10px;
  flex-shrink: 0;
}
.pkv-input-wrap:focus-within i {
  color: var(--primary-gold);
}
.pkv-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.88rem;
  font-family: var(--font-family);
  padding: 10px 0;
  color: var(--dark-gray);
}
.pkv-input-wrap input::placeholder {
  color: #bbb;
}
.pkv-input-wrap.pkv-input-error {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}
.pkv-input-wrap.pkv-input-error i {
  color: #e53935;
}
.pkv-input-hint {
  display: block;
  font-size: 0.72rem;
  color: #aaa;
  margin-top: 3px;
  padding-left: 2px;
}
.pkv-form-error {
  font-size: 0.78rem;
  color: #e53935;
  margin: 4px 0 0;
  min-height: 18px;
}

/* Payment Option Radio Cards */
.pkv-payment-radio {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}
.pkv-payment-radio input[type="radio"] {
  display: none;
}
.pkv-payment-radio-box {
  display: block;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 16px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.pkv-payment-radio input[type="radio"]:checked + .pkv-payment-radio-box {
  border-color: var(--primary-gold);
  background: #fdf8ef;
}
.pkv-payment-radio-title {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: #222;
}
.pkv-payment-radio-desc {
  display: block;
  font-size: 0.76rem;
  color: #888;
  margin-top: 2px;
}

/* ==========================================
   Payment Page Styles
   ========================================== */

.pay-page {
  min-height: 100vh;
  background: #f5f5f5;
  padding-bottom: 40px;
}

/* Merchant Header */
.pay-merchant-header {
  text-align: center;
  padding: 30px 20px 24px;
}
.pay-merchant-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 12px;
  object-fit: contain;
}
.pay-merchant-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}
.pay-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
}
.pay-amount-label {
  font-size: 0.8rem;
  color: #888;
  margin-top: 2px;
}

/* Payment Methods Wrapper */
.pay-methods-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

/* Payment Method Card */
.pay-method-card {
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  overflow: hidden;
}
.pay-method-card:hover {
  border-color: #ccc;
}
.pay-method-card.pay-method-active {
  border-color: var(--primary-gold);
  box-shadow: 0 2px 12px rgba(212, 168, 75, 0.12);
}

/* Method Header Row */
.pay-method-header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 14px;
}
.pay-method-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pay-method-icon-wrap i {
  font-size: 1.2rem;
  color: #444;
}
.pay-method-info {
  flex: 1;
}
.pay-method-info strong {
  display: block;
  font-size: 0.95rem;
  color: #222;
  font-weight: 600;
}
.pay-method-info span {
  display: block;
  font-size: 0.76rem;
  color: #999;
  margin-top: 1px;
}

/* Check mark (active) */
.pay-method-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pay-method-check i {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.pay-method-card:not(.pay-method-active) .pay-method-check {
  display: none;
}

/* Arrow (inactive) */
.pay-method-arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pay-method-arrow i {
  color: #ccc;
  font-size: 1rem;
}
.pay-method-card.pay-method-active .pay-method-arrow {
  display: none;
}

/* Method Body (expanded content) */
.pay-method-body {
  padding: 0 20px 20px;
  border-top: 1px solid #f0f0f0;
}
.pay-method-card:not(.pay-method-active) .pay-method-body {
  display: none;
}

/* Option Grid (bank/counter/wallet/installment lists) */
.pay-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.pay-option-item {
  margin: 0;
  cursor: pointer;
}
.pay-option-item input[type="radio"] {
  display: none;
}
.pay-option-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #444;
  background: #fafafa;
  transition: all 0.2s;
}
.pay-option-box i {
  font-size: 1rem;
  color: #aaa;
  transition: color 0.2s;
}
.pay-option-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}
.pay-option-item input[type="radio"]:checked + .pay-option-box {
  border-color: var(--primary-gold);
  background: #fef9ed;
  color: #222;
}
.pay-option-item input[type="radio"]:checked + .pay-option-box i {
  color: var(--primary-gold);
}
.pay-option-item:hover .pay-option-box {
  border-color: #d4a94a;
  background: #fffdf6;
}
.pay-option-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #444;
  background: #fafafa;
}
.pay-option-badge i {
  font-size: 1rem;
  color: var(--primary-gold);
}
.pay-option-grid-cards {
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.pay-card-badge {
  justify-content: center;
  padding: 8px 6px;
  border-radius: 8px;
  border-color: #e0e0e0;
  background: #fff;
}
.pay-card-logo {
  width: 100%;
  max-width: 64px;
  height: 40px;
  object-fit: contain;
}
@media (max-width: 480px) {
  .pay-option-grid-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* QR Code Area */
.pay-qr-container {
  text-align: center;
  padding: 24px 0 16px;
}
.pay-qr-img {
  display: inline-block;
  padding: 12px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
}
.pay-qr-img canvas {
  display: block;
}

/* QR Details */
.pay-qr-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.pay-qr-detail-item {
  font-size: 0.88rem;
  color: #555;
}
.pay-qr-detail-item strong {
  color: #111;
  font-weight: 700;
  margin-left: 4px;
}
.pay-qr-divider {
  width: 1px;
  height: 20px;
  background: #ddd;
}

/* QR Action Buttons */
.pay-qr-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}
.pay-qr-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-family);
  font-size: 0.84rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.pay-qr-btn:hover {
  border-color: var(--primary-gold);
  background: #fdf8ef;
}
.pay-qr-btn i {
  font-size: 1rem;
}

/* Waiting indicator */
.pay-waiting {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.82rem;
  color: #999;
}

/* Payment Summary Card */
.pay-summary-card {
  max-width: 560px;
  margin: 20px auto 0;
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  border: 1px solid #e8e8e8;
}
.pay-summary-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #222;
  margin-bottom: 16px;
}
.pay-summary-title i {
  color: var(--primary-gold);
  margin-right: 6px;
}
.pay-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.85rem;
  color: #555;
}
.pay-summary-divider {
  height: 1px;
  background: #eee;
  margin: 10px 0;
}
.pay-summary-final {
  font-size: 0.95rem;
  color: #111;
}
.pay-summary-final strong {
  color: var(--primary-gold);
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 576px) {
  .pay-merchant-name {
    font-size: 0.95rem;
  }
  .pay-amount {
    font-size: 1.6rem;
  }
  .pay-method-header {
    padding: 14px 16px;
    gap: 10px;
  }
  .pay-qr-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .pay-qr-btn {
    justify-content: center;
  }
  .pay-qr-details {
    gap: 10px;
    font-size: 0.82rem;
  }
}

/* QR Timer */
.pay-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: #888;
}
.pay-timer i {
  font-size: 0.9rem;
}
.pay-timer strong {
  color: #222;
  font-weight: 700;
  font-size: 0.9rem;
}

/* QR Expired */
.pay-qr-expired {
  text-align: center;
  padding: 16px 0;
}
.pay-qr-expired p {
  font-size: 0.88rem;
  color: #dc3545;
  font-weight: 600;
  margin: 8px 0 14px;
}

/* Credit/Debit Card Form */
.pay-card-form {
  margin-top: 16px;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}
.pay-card-field {
  margin-bottom: 12px;
}
.pay-card-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}
.pay-card-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: var(--font-family);
  font-size: 0.88rem;
  color: #222;
  background: #fafafa;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.pay-card-input:focus {
  border-color: var(--primary-gold);
  background: #fff;
}
.pay-card-input::placeholder {
  color: #bbb;
}
.pay-card-row {
  display: flex;
  gap: 12px;
}
.pay-card-row .pay-card-field {
  flex: 1;
}

/* Counter Barcode Area */
.pay-barcode-area {
  margin-top: 16px;
}
.pay-barcode-divider {
  height: 1px;
  background: #f0f0f0;
  margin-bottom: 16px;
}
.pay-barcode-box {
  text-align: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  margin-bottom: 12px;
}
.pay-barcode-img {
  width: 100%;
  max-width: 260px;
  height: 80px;
}
.pay-barcode-ref {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555;
  padding: 4px 0;
}
.pay-barcode-ref strong {
  color: #111;
}
.pay-barcode-instruction {
  font-size: 0.82rem;
  color: #666;
  text-align: center;
  margin-top: 12px;
  padding: 10px;
  background: #f8f8f8;
  border-radius: 8px;
}
.pay-barcode-expiry {
  font-size: 0.78rem;
  color: #e67e22;
  text-align: center;
  margin-top: 8px;
}
.pay-barcode-expiry i {
  margin-right: 4px;
}

/* Confirm Button */
.pay-confirm-wrapper {
  max-width: 560px;
  margin: 20px auto 0;
}
.pay-confirm-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 14px 0;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.pay-confirm-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #fff;
}
.pay-confirm-btn i {
  margin-right: 4px;
}

/* Payment Modals */
.pay-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.pay-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Success Icon */
.pay-success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: paySuccessPop 0.4s ease;
}
.pay-success-icon i {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
@keyframes paySuccessPop {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* Success Details */
.pay-success-details {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
}
.pay-success-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555;
  padding: 5px 0;
}
.pay-success-row strong {
  color: #222;
}

/* ==========================================
   SHEIKH AUTH PAGES (Login & Registration)
   ========================================== */
.sheikh-auth-page {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background: linear-gradient(
    135deg,
    var(--dark-gold) 20%,
    var(--primary-gold) 40%,
    var(--light-cream) 100%
  ) !important;
  min-height: 100vh;
}

/* Login Section */
.sheikh-login-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 70px;
  padding-bottom: 20px;
    background: linear-gradient(
    135deg,
    var(--dark-gold) 0%,
    var(--primary-gold) 40%,
    var(--light-cream) 100%
  ) !important;
  min-height: 100vh;
}

/* Login Card - Two Panel Layout */
.sheikh-login-card {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-height: calc(100vh - 100px);
}
.sheikh-login-left {
  flex: 1.3;
  background: #fff;
  padding: 32px 32px;
  overflow-y: auto;
}
.sheikh-login-right {
  flex: 0.7;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 28px;
  text-align: center;
}
.sheikh-login-right h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.sheikh-signup-link {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: underline;
  transition: opacity 0.2s;
}
.sheikh-signup-link:hover {
  color: #fff;
  opacity: 0.8;
}

/* Success Alert */
.sheikh-alert-success {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: #155724;
  line-height: 1.4;
}
.sheikh-alert-success i {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Form Title */
.sheikh-form-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}
.sheikh-title-gold {
  color: var(--primary-gold);
}
.sheikh-title-white {
  color: #fff;
}

/* Form Groups */
.sheikh-form-group {
  margin-bottom: 14px;
}
.sheikh-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 4px;
}
.sheikh-label-white {
  color: #fff !important;
}

/* Input Wrap with Icon */
.sheikh-input-wrap {
  display: flex;
  align-items: center;
  position: relative;
}
.sheikh-input-wrap-simple {
  position: relative;
}
.sheikh-input-wrap-simple .sheikh-input {
  padding-right: 40px;
}
.sheikh-input-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-gold);
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sheikh-input-icon i {
  color: #fff;
  font-size: 1rem;
}
.sheikh-input-wrap .sheikh-input {
  border-radius: 0 8px 8px 0;
}

/* Input Fields */
.sheikh-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0d5c0;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 0.88rem;
  color: #333;
  background: #fdf5e6;
  outline: none;
  transition: border-color 0.2s;
}
.sheikh-input:focus {
  border-color: var(--primary-gold);
  background: #fef9ed;
}
.sheikh-input::placeholder {
  color: #999;
}

/* Light input (left panel register) */
.sheikh-input-light {
  background: #fdf5e6;
}

/* Dark input (right panel register) */
.sheikh-input-dark {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.sheikh-input-dark:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}
.sheikh-input-dark::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Toggle Password Button */
.sheikh-toggle-password {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 4px;
  font-size: 1rem;
}
.sheikh-toggle-password:hover {
  color: var(--primary-gold);
}

/* Checkbox */
.sheikh-check-label {
  font-size: 0.82rem;
  color: #555;
}

/* Forgot Password Link */
.sheikh-forgot-link {
  font-size: 0.82rem;
  color: var(--primary-gold);
  text-decoration: none;
}
.sheikh-forgot-link:hover {
  text-decoration: underline;
  color: var(--dark-gold);
}

/* Sign In / Register Button */
.btn-sheikh-login {
  background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold)) !important;
  color: #fff !important;
  border: none;
  border-radius: 25px !important;
  padding: 12px 0 !important;
  font-family: var(--font-family) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.btn-sheikh-login:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
}

/* ── Sheikh Registration ── */
.sheikh-register-section {
  padding-top: 80px;
  padding-bottom: 30px;
}

/* Register Card - Two Column */
.sheikh-register-card {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.sheikh-register-left {
  flex: 1;
  background: #fff;
  padding: 32px 28px;
}
.sheikh-register-right {
  flex: 1;
  background: #8b6914;
  padding: 32px 28px;
}

/* Terms */
.sheikh-terms {
  margin-top: 16px;
}
.sheikh-terms-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9) !important;
}
.sheikh-terms-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}
.sheikh-terms-link:hover {
  color: var(--light-cream);
}

/* Register Button Wrapper */
.sheikh-register-btn-wrap {
  max-width: 400px;
  margin: 20px auto 0;
}

/* Login Link */
.sheikh-login-link {
  font-size: 0.85rem;
  color: #fff;
}
.sheikh-login-link a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.sheikh-login-link a:hover {
  opacity: 0.8;
}

/* Custom checkbox on dark bg */
.sheikh-register-right
  .custom-control-input:checked
  ~ .custom-control-label::before {
  background-color: #fff;
  border-color: #fff;
}
.sheikh-register-right
  .custom-control-input:checked
  ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%238B6914' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .sheikh-login-card {
    flex-direction: column;
    max-height: none;
  }
  .sheikh-login-left {
    padding: 28px 22px;
  }
  .sheikh-login-right {
    padding: 28px 22px;
  }
  .sheikh-register-card {
    flex-direction: column;
  }
  .sheikh-register-left,
  .sheikh-register-right {
    padding: 26px 20px;
  }
}
@media (max-width: 576px) {
  .sheikh-login-section {
    padding-top: 65px;
  }
  .sheikh-register-section {
    padding-top: 65px;
  }
  .sheikh-form-title {
    font-size: 1.1rem;
  }
}
