/* ============================================
   Modern Matrimonial UI - Premium Design System
   Elegant, Romantic, Fully Responsive
   ============================================ */

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

/* ===== CSS VARIABLES - ROMANTIC COLOR PALETTE ===== */
:root {
  /* Primary Colors - Romantic & Elegant (Senior Designer Palette) */
  --primary-rose: #E91E63;        /* Main brand - passionate, trustworthy */
  --primary-rose-light: #F8BBD0; /* Soft backgrounds */
  --primary-rose-dark: #C2185B;  /* Hover states, emphasis */
  --primary-pink: #f8b2d3;       /* Alternative soft pink */
  --primary-pink-dark: #e895b8;
  --primary-pink-light: #fce4ef;
  --primary-lavender: #c8a8e9;
  --primary-lavender-dark: #b08dd4;
  --primary-lavender-light: #e6d9f5;
  
  /* Accent Colors - Premium Gold */
  --accent-gold: #D4AF37;        /* Premium features, trust */
  --accent-gold-dark: #B8941F;
  --accent-gold-light: #F4E4A6;
  
  /* Secondary Colors */
  --secondary-lavender: #9C27B0; /* Elegant accent */
  --secondary-peach: #FFB74D;     /* Warm, inviting */
  --secondary-cream: #FFF8E1;     /* Soft backgrounds */
  
  /* Neutral Colors - Professional Palette */
  --neutral-white: #FFFFFF;
  --neutral-off-white: #FAFAFA;
  --neutral-light: #F5F5F5;
  --neutral-medium: #E0E0E0;
  --neutral-dark: #424242;
  --neutral-text: #212121;
  --neutral-text-light: #757575;
  
  /* Legacy support */
  --white: var(--neutral-white);
  --off-white: var(--neutral-off-white);
  --cream: #faf8f5;
  --light-gray: var(--neutral-light);
  --border: var(--neutral-medium);
  --text-dark: var(--neutral-text);
  --text-medium: var(--neutral-text-light);
  --text-light: #8a8a8a;
  
  /* Background */
  --bg-primary: #ffffff;
  --bg-secondary: #fefefe;
  --bg-light: #faf8f5;
  --bg-gradient: linear-gradient(135deg, #f8b2d3 0%, #c8a8e9 50%, #fce4ef 100%);
  
  /* Status Colors */
  --success: #4caf50;
  --warning: #ff9800;
  --info: #2196f3;
  --danger: #e74c3c;
  
  /* Shadows - Soft & Elegant */
  --shadow-xs: 0 1px 3px rgba(248, 178, 211, 0.1);
  --shadow-sm: 0 2px 8px rgba(248, 178, 211, 0.12);
  --shadow: 0 4px 16px rgba(248, 178, 211, 0.15);
  --shadow-md: 0 8px 24px rgba(248, 178, 211, 0.18);
  --shadow-lg: 0 16px 48px rgba(248, 178, 211, 0.2);
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 600; }
h3 { font-size: 2rem; font-weight: 600; }
h4 { font-size: 1.75rem; font-weight: 600; }
h5 { font-size: 1.5rem; font-weight: 600; }
h6 { font-size: 1.25rem; font-weight: 600; }

p {
  margin-bottom: var(--space-md);
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.8;
}

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

a:hover {
  color: var(--primary-pink-dark);
  text-decoration: none;
}

/* ===== HEADER & NAVIGATION ===== */
.navbar-inverse-blue {
  background: var(--white) !important;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-inner {
  padding: 0;
  background: transparent;
}

.navbar-inner .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.brand:hover {
  transform: scale(1.02);
}

.brand img.logoimg {
  max-height: 80px;
  max-width: 250px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(248, 178, 211, 0.2));
}

/* Navigation Menu */
.navbar-collapse {
  display: flex !important;
  flex: 1;
  justify-content: flex-end;
}

.nav_1,
ul.nav_1 {
  display: flex !important;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav_1 li {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.nav_1 li a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  position: relative;
}

.nav_1 li a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--primary-pink);
  transition: var(--transition);
}

.nav_1 li a:hover {
  background: var(--primary-pink-light);
  color: var(--primary-pink-dark);
}

.nav_1 li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav_1 li a.btn-login-nav,
.nav_1 li.last a[href="/Login"] {
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-lavender) 100%);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.nav_1 li a.btn-login-nav:hover,
.nav_1 li.last a[href="/Login"]:hover {
  background: linear-gradient(135deg, var(--primary-rose-dark) 0%, var(--primary-lavender-dark) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.nav_1 li a.btn-login-nav::after,
.nav_1 li.last a[href="/Login"]::after {
  display: none;
}

.nav_1 li form .btn-warning {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.nav_1 li form .btn-warning:hover {
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Hide hamburger on desktop */
.navbar-header.nav_2,
.navbar-toggle,
.navbar-toggle1 {
  display: none !important;
}

/* ===== PROFILE CARDS - PREMIUM DESIGN ===== */
.profile-card,
.col_1 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.profile-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
  border-color: var(--primary-rose);
  cursor: pointer;
}

.profile-card:hover::before {
  transform: scaleX(1);
}

.profile-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.profile-image-container {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--primary-rose-light);
  background: var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.profile-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(200, 168, 233, 0.1) 100%);
  opacity: 0;
  transition: var(--transition);
}

.profile-image-container:hover {
  border-color: var(--primary-rose);
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.profile-image-container:hover::after {
  opacity: 1;
}

.profile-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.profile-image-container:hover img {
  transform: scale(1.1);
}

.profile-info-header {
  flex: 1;
  min-width: 0;
}

.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-id {
  font-size: 0.875rem;
  color: var(--primary-rose);
  font-weight: 600;
  background: var(--primary-rose-light);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: 4px;
  position: relative;
}

.profile-id::before {
  content: '✓';
  margin-right: 4px;
  color: var(--accent-gold);
  font-weight: 700;
}

.profile-details {
  margin-bottom: 16px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
  transition: var(--transition-fast);
}

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

.detail-item:hover {
  background: var(--primary-pink-light);
  margin: 0 -12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border-bottom: none;
}

.detail-label {
  color: var(--text-medium);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-label i {
  color: var(--primary-rose);
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.detail-value {
  color: var(--text-dark);
  font-weight: 600;
  text-align: right;
}

.profile-card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.view-profile-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-rose) 0%, var(--primary-lavender) 100%);
  color: var(--white);
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.view-profile-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.view-profile-btn:hover::before {
  width: 300px;
  height: 300px;
}

.view-profile-btn:hover {
  background: linear-gradient(135deg, var(--primary-rose-dark) 0%, var(--primary-lavender-dark) 100%);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.view-profile-btn > * {
  position: relative;
  z-index: 1;
}

.view-profile-btn i {
  font-size: 16px;
}

/* ===== PROFILE GRID ===== */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 0;
}

/* ===== FORMS - ELEGANT DESIGN ===== */
.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-dark);
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 4px rgba(248, 178, 211, 0.1);
  background: var(--off-white);
}

label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

/* ===== BUTTONS - PREMIUM STYLE ===== */
.btn,
.btn-primary {
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-lavender) 100%);
  color: var(--white);
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  font-family: 'Poppins', sans-serif;
}

.btn:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-pink-dark) 0%, var(--primary-lavender-dark) 100%);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-success {
  background: linear-gradient(135deg, var(--success) 0%, #45a049 100%);
  color: var(--white);
}

.btn-success:hover {
  background: linear-gradient(135deg, #45a049 0%, var(--success) 100%);
  color: var(--white);
}

.btn-warning {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--white);
}

.btn-warning:hover {
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
  color: var(--white);
}

.btn-block {
  width: 100%;
  display: block;
}

/* ===== FILTER CARDS ===== */
.filter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.filter-card:hover {
  box-shadow: var(--shadow);
}

.filter-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary-pink-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-title i {
  color: var(--primary-pink);
  margin-right: 10px;
  font-size: 20px;
}

.filter-section {
  margin-bottom: 24px;
}

.filter-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.filter-label i {
  color: var(--primary-pink);
  font-size: 16px;
}

.modern-input,
.modern-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  background: var(--white);
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.modern-input:focus,
.modern-select:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 4px rgba(248, 178, 211, 0.1);
  background: var(--off-white);
}

.modern-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-rose) 0%, var(--primary-lavender) 100%);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.modern-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.modern-btn:hover::before {
  width: 300px;
  height: 300px;
}

.modern-btn:hover {
  background: linear-gradient(135deg, var(--primary-rose-dark) 0%, var(--primary-lavender-dark) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.modern-btn-reset {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--border);
}

.modern-btn-reset:hover {
  background: var(--light-gray);
  color: var(--text-dark);
  border-color: var(--primary-pink);
}

/* ===== BANNER / HERO SECTION ===== */
.banner {
  background: var(--bg-gradient),
              url(../images/banner.png) no-repeat center center;
  background-size: cover;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0;
  color: var(--white);
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(248, 178, 211, 0.85) 0%, rgba(200, 168, 233, 0.85) 100%);
  z-index: 1;
}

.banner_info {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
}

.banner_info h2 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 20px 0;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
  line-height: 1.2;
}

.banner_info p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.banner_info a,
.banner_info .btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  margin: 8px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.banner_info .btn-primary-modern {
  background: var(--white);
  color: var(--primary-pink-dark);
}

.banner_info .btn-primary-modern:hover {
  background: var(--off-white);
  color: var(--primary-pink-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.grid_3 {
  padding: 48px 0;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

.col-md-3 { width: 25%; }
.col-md-4 { width: 33.333%; }
.col-md-6 { width: 50%; }
.col-md-8 { width: 66.666%; }
.col-md-9 { width: 75%; }
.col-md-12 { width: 100%; }

/* ===== BREADCRUMB ===== */
.breadcrumb1 {
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.breadcrumb1 ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb1 a {
  color: var(--primary-pink);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.breadcrumb1 a:hover {
  color: var(--primary-pink-dark);
  transform: translateX(2px);
}

.breadcrumb1 .home_1 {
  font-size: 18px;
}

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

.breadcrumb1 .current-page {
  color: var(--text-medium);
  font-weight: 500;
}

/* ===== SUCCESS STORIES ===== */
.suceess_story {
  background: var(--white);
  border-left: 4px solid var(--primary-pink);
  padding: 24px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.suceess_story:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  border-left-color: var(--primary-lavender);
}

.suceess_story-content-info h4 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-pink);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.suceess_story-content-info h4 a {
  color: var(--primary-pink);
  text-decoration: none;
}

.suceess_story-content-info h4 a:hover {
  color: var(--primary-pink-dark);
}

.suceess_story-content-info p {
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0;
}

.suceess_story-date .entry-1 {
  color: var(--primary-pink);
  font-weight: 600;
  font-size: 14px;
}

/* ===== MODAL ===== */
.modal-content {
  border-radius: var(--radius-xl);
  border: none;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal-header {
  background: var(--bg-gradient);
  color: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 24px 32px;
  border-bottom: none;
}

.modal-header h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin: 0;
}

.modal-header .close {
  color: var(--white);
  opacity: 0.9;
  font-size: 32px;
  font-weight: 300;
  text-shadow: none;
  transition: var(--transition);
}

.modal-header .close:hover {
  opacity: 1;
  color: var(--white);
  transform: rotate(90deg);
}

.modal-body {
  padding: 32px;
  background: var(--white);
}

.modal-footer {
  border-top: 1px solid var(--border);
  padding: 20px 32px;
  background: var(--bg-light);
}

/* ===== ALERTS ===== */
.alert {
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  border: none;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border-left: 4px solid;
}

.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left-color: var(--success);
}

.alert-warning {
  background: #fff3e0;
  color: #e65100;
  border-left-color: var(--warning);
}

.alert-info {
  background: #e3f2fd;
  color: #1565c0;
  border-left-color: var(--info);
}

.alert-danger {
  background: #ffebee;
  color: #c62828;
  border-left-color: var(--danger);
}

/* ===== LOADING SKELETON ===== */
.loading-skeleton {
  background: linear-gradient(90deg, var(--light-gray) 25%, var(--border) 50%, var(--light-gray) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
  border-radius: var(--radius);
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
  
  .profiles-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 1200px) {
  .navbar-inner .container {
    padding: 10px 20px;
  }
  
  .profiles-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 991px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  
  .navbar-inner .container {
    padding: 10px 16px;
  }
  
  .brand img.logoimg {
    max-height: 65px;
    max-width: 210px;
  }
  
  .nav_1 li a {
    font-size: 14px;
    padding: 8px 14px;
  }
  
  .profiles-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .col-md-3,
  .col-md-4,
  .col-md-6,
  .col-md-8,
  .col-md-9 {
    width: 100%;
    margin-bottom: 24px;
  }
  
  .banner_info h2 {
    font-size: 2.5rem;
  }
  
  .banner_info p {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .navbar-inner .container {
    padding: 10px 12px;
    flex-wrap: nowrap;
  }
  
  .brand {
    margin-right: 8px;
    flex-shrink: 0;
  }
  
  .brand img.logoimg {
    max-height: 60px;
    max-width: 200px;
  }
  
  /* Navigation always visible - single line */
  .navbar-collapse {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-width: 0;
  }
  
  .navbar-header.nav_2,
  .navbar-toggle,
  .navbar-toggle1 {
    display: none !important;
  }
  
  .nav_1 {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2px;
    justify-content: flex-end;
    min-width: max-content;
  }
  
  .nav_1 li a {
    font-size: 12px;
    padding: 8px 12px;
    white-space: nowrap;
  }
  
  .nav_1 li a i {
    font-size: 11px;
  }
  
  .nav_1 li.last a[href="/Login"],
  .nav_1 li a.btn-login-nav,
  .nav_1 li form .btn-warning {
    font-size: 12px;
    padding: 8px 14px;
  }
  
  .profiles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .profile-card {
    padding: 16px;
  }
  
  .profile-card-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .profile-image-container {
    width: 90px;
    height: 90px;
    margin: 0 auto;
  }
  
  .banner {
    min-height: 500px;
    padding: 60px 0;
  }
  
  .banner_info h2 {
    font-size: 2rem;
  }
  
  .banner_info p {
    font-size: 1rem;
  }
  
  .banner_info a,
  .banner_info .btn {
    padding: 14px 28px;
    font-size: 16px;
  }
  
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .filter-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .navbar-inner .container {
    padding: 8px 10px;
  }
  
  .brand img.logoimg {
    max-height: 55px;
    max-width: 180px;
  }
  
  .nav_1 li a {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .nav_1 li a i {
    font-size: 10px;
  }
  
  .nav_1 li.last a[href="/Login"],
  .nav_1 li a.btn-login-nav,
  .nav_1 li form .btn-warning {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .profile-card {
    padding: 14px;
  }
  
  .profile-image-container {
    width: 80px;
    height: 80px;
  }
  
  .profile-name {
    font-size: 1.25rem;
  }
  
  .profile-id {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
  
  .detail-item {
    font-size: 13px;
    padding: 8px 0;
  }
  
  .view-profile-btn {
    padding: 10px;
    font-size: 14px;
  }
  
  .banner_info h2 {
    font-size: 1.75rem;
  }
  
  .banner_info p {
    font-size: 0.9rem;
  }
  
  .banner_info a,
  .banner_info .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  .filter-card {
    padding: 16px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ===== FILTER SIDEBAR ===== */
.filter-sidebar {
  position: sticky;
  top: 80px;
}

.filter-sidebar.collapse {
  display: none;
}

.filter-sidebar.collapse.show {
  display: block;
}

@media (min-width: 992px) {
  .filter-sidebar.collapse {
    display: block !important;
  }
}

@media (max-width: 991px) {
  .filter-sidebar.collapse {
    display: none !important;
  }
  
  .filter-sidebar.collapse.show {
    display: block !important;
  }
}

/* ===== NO IMAGE PLACEHOLDER ===== */
.no-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-pink-light) 0%, var(--primary-lavender-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-pink);
  text-align: center;
  padding: 20px;
}

.no-image-placeholder i {
  font-size: 48px;
  margin-bottom: 10px;
  opacity: 0.6;
}

.no-image-placeholder span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

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

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

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

