/* ================================================================
   My Dreams Holidays – Global Stylesheet
   Stack: Bootstrap 5 + Custom CSS
================================================================ */

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

/* ===== CSS VARIABLES ============================================ */
:root {
  --primary: #fa6c35; /* Orange from logo */
  --primary-dark: #dc5625;
  --secondary: #1e6ac5; /* Blue from logo */
  --secondary-dark: #16529e;
  --accent: #1ebd1e; /* Green from logo */
  --dark: #0f1c2e;
  --dark-2: #1a2d42;
  --light-bg: #f7faff;
  --text-muted: #6b7c93;
  --card-radius: 16px;
  --shadow-sm: 0 2px 12px rgba(13, 110, 253, 0.08);
  --shadow-md: 0 8px 32px rgba(13, 110, 253, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

/* ===== RESET & BASE ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: #212529;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ===== TYPOGRAPHY =============================================== */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0.5rem auto 0;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* ===== NAVBAR =================================================== */
.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 45px !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
}

.footer-logo img {
  height: 60px !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
}

.dashboard-brand img {
  height: 35px !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
}

.navbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
  padding: 0.75rem 0;
  transition: var(--transition);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  background: rgba(13, 110, 253, 0.08);
  color: var(--primary) !important;
}

.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: rgba(13, 110, 253, 0.1);
}

.btn-nav-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff !important;
  border: none;
  padding: 0.5rem 1.25rem !important;
  border-radius: 100px !important;
  font-weight: 600;
  transition: var(--transition);
}

.btn-nav-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,110,253,0.4);
}

/* ===== HERO ===================================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f1c2e 0%, #0d3a6e 50%, #0a6e5e 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section .container { position: relative; z-index: 1; }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-title span {
  background: linear-gradient(135deg, #ffc107 0%, #20c997 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
}

/* Hero Search Box */
.hero-search-box {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.5);
}

.search-tab-pills .nav-link {
  color: var(--text-muted);
  font-weight: 600;
  border-radius: 10px;
  padding: 0.5rem 1.25rem;
  transition: var(--transition);
}

.search-tab-pills .nav-link.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.search-input-group {
  background: var(--light-bg);
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  transition: var(--transition);
}

.search-input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,110,253,0.12);
}

.search-input-group .form-control,
.search-input-group .form-select {
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.search-input-group .form-control:focus,
.search-input-group .form-select:focus {
  box-shadow: none;
}

.search-input-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 1rem 0;
  display: block;
}

/* ===== SECTION WRAPPER ========================================= */
.section-wrapper {
  padding: 5rem 0;
}

.section-wrapper.bg-light-custom {
  background: var(--light-bg);
}

/* ===== CARDS ==================================================== */
/* Package Card */
.package-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eef2ff;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.package-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.package-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

.card-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  color: #888;
}

.card-wishlist-btn:hover,
.card-wishlist-btn.active {
  color: #e74c3c;
  background: #fff;
  box-shadow: 0 4px 12px rgba(231,76,60,0.25);
}

.package-card .card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-destination {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card-meta i { color: var(--primary); }

.star-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
}

.star-rating i { color: #ffc107; font-size: 0.75rem; }

.card-footer-area {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.card-price small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Property Card (Airbnb-style) */
.property-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eef2ff;
  transition: var(--transition);
  height: 100%;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.property-card .card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.property-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.property-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: capitalize;
}

.property-type-hotel    { background: #dbeafe; color: #1d4ed8; }
.property-type-resort   { background: #dcfce7; color: #166534; }
.property-type-villa    { background: #fef3c7; color: #92400e; }
.property-type-homestay { background: #fce7f3; color: #9d174d; }
.property-type-apartment{ background: #ede9fe; color: #6d28d9; }

.property-card .card-body { padding: 1.25rem; }

.property-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.35rem;
}

.property-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.amenity-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.6rem 0; }

.amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--light-bg);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
}

.amenity-pill i { font-size: 0.75rem; color: var(--secondary); }

/* ===== BUTTONS ================================================= */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary) 0%, #0a90c7 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,110,253,0.35);
  color: #fff;
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 2rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-gradient:hover {
  box-shadow: 0 8px 28px rgba(13,110,253,0.4);
  transform: translateY(-2px);
  color: #fff;
}

/* ===== HOW IT WORKS ============================================ */
.how-step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.how-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  background: linear-gradient(135deg, rgba(13,110,253,0.12) 0%, rgba(32,201,151,0.12) 100%);
  color: var(--primary);
}

/* ===== STATS BANNER ============================================= */
.stats-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 3rem 0;
}

.stat-item { text-align: center; color: #fff; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffc107, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ===== FILTER SIDEBAR ========================================= */
.filter-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eef2ff;
  position: sticky;
  top: 80px;
}

.filter-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-bg);
}

/* ===== DETAIL PAGES =========================================== */
.detail-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 0 0 2rem 2rem;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,28,46,0.7) 0%, transparent 60%);
}

.detail-hero-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: #fff;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: var(--transition);
}

.detail-gallery img:hover { opacity: 0.9; transform: scale(1.02); }
.detail-gallery img:first-child { grid-row: 1 / 3; }

.detail-section { padding: 2rem 0; border-bottom: 1px solid #eef2ff; }

.detail-section:last-child { border-bottom: none; }

/* Booking Form (detail page) */
.booking-widget {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #eef2ff;
  position: sticky;
  top: 80px;
}

.booking-widget .price-display {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.booking-widget .price-display span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.date-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.date-input-cell {
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.date-input-cell:first-child { border-right: 1.5px solid #e2e8f0; }

.date-input-cell label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--dark); display: block; }

.date-input-cell input {
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
  background: transparent;
}

/* ===== DASHBOARD ============================================== */
.dashboard-sidebar {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  min-height: 100vh;
  padding: 0;
}

.dashboard-brand {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.sidebar-nav { padding: 1rem 0.75rem; }

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0.25rem;
  text-decoration: none;
}

.sidebar-nav-item:hover,
.sidebar-nav-item.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.sidebar-nav-item i { width: 20px; text-align: center; font-size: 1rem; }

.dashboard-main { padding: 2rem; background: var(--light-bg); min-height: 100vh; }

.dash-stat-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eef2ff;
}

.dash-stat-card .stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.dash-stat-card .stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.content-card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid #eef2ff;
  overflow: hidden;
}

.content-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #eef2ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-card-header h5 {
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

/* ===== BADGES / STATUS ========================================= */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-pending   { background: #fff7ed; color: #c2410c; }
.status-confirmed { background: #dcfce7; color: #166534; }
.status-rejected  { background: #fef2f2; color: #dc2626; }
.status-cancelled { background: #f1f5f9; color: #475569; }
.status-new       { background: #dbeafe; color: #1d4ed8; }
.status-replied   { background: #dcfce7; color: #166534; }
.status-closed    { background: #f1f5f9; color: #475569; }

/* ===== FORMS ================================================== */
.form-label-custom {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-control-custom {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,110,253,0.12);
  outline: none;
}

/* ===== AUTH PAGE ============================================== */
.auth-wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-hero {
  background: linear-gradient(135deg, #0f1c2e 0%, #0d3a6e 60%, #0a6e5e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.auth-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(32,201,151,0.12);
  top: -100px;
  right: -100px;
}

.auth-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(13,110,253,0.12);
  bottom: -80px;
  left: -80px;
}

.auth-form-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
  background: #fff;
}

.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.social-login-btn:hover { background: var(--light-bg); border-color: var(--primary); }

.divider-or {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 1rem 0;
}

.divider-or::before,
.divider-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

/* ===== FOOTER ================================================= */
.site-footer {
  background: linear-gradient(180deg, var(--dark) 0%, #060e1a 100%);
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 2rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffc107, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.footer-heading { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 1.25rem; }

.footer-link {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: var(--transition);
}

.footer-link:hover { color: var(--secondary); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  margin-right: 0.4rem;
}

.social-icon:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ===== TOAST NOTIFICATIONS ==================================== */
.toast-container-custom {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.toast-custom {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 300px;
  animation: slideIn 0.3s ease;
}

.toast-custom.toast-success { border-color: var(--secondary); }
.toast-custom.toast-error   { border-color: #ef4444; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ============================================= */
@media (max-width: 991px) {
  .auth-wrapper { grid-template-columns: 1fr; }
  .auth-hero { display: none; }
  .auth-form-side { padding: 2rem 1.5rem; }
  .detail-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .detail-gallery img:first-child { grid-row: auto; }
  .dashboard-sidebar { min-height: auto; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.2rem; }
  .hero-search-box { padding: 1.25rem; }
  .section-wrapper { padding: 3rem 0; }
  .stat-number { font-size: 2rem; }
  .detail-gallery { display: block; }
  .detail-gallery img { width: 100%; height: 200px; margin-bottom: 4px; }
}

/* ===== UTILITY ================================================ */
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
