/* ============================================
   MODERN CSS RESET & BASE STYLES
   ============================================ */

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

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Modern Color Palette */
  --primary-dark: #0c043c;
  --primary-purple: #663fdb;
  --primary-purple-light: #8460ee;
  --accent-yellow: #fbde59;
  --accent-yellow-light: #fef3a0;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red-500: #ef4444;
  --red-600: #dc2626;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

html {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--accent-yellow);
  margin: 0;
  padding: 0;
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   MAIN BACKGROUND & CONTAINERS
   ============================================ */

.containerMain,
.bodyProSignUpForm,
.bodyLoginForm,
.bodyProfile,
.client-search-page,
.bodyProfileEdit,
.bodyConfirmation {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow-light) 100%);
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic viewport height for mobile */
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
}

.client-search-page {
  min-height: 100vh;
  min-height: 100dvh;
}

/* ============================================
   NAVIGATION BAR - SOPHISTICATED & FLASHY
   ============================================ */

.navbar {
  background: linear-gradient(135deg, 
    rgba(26, 13, 74, 0.85) 0%, 
    rgba(42, 21, 102, 0.75) 50%, 
    rgba(26, 13, 74, 0.85) 100%);
  background-size: 200% 200%;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2),
              0 0 40px rgba(102, 63, 219, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(132, 96, 238, 0.4);
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
  gap: 2rem;
}

.navbar > div:first-child {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar > div:last-child {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  right: 2rem;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(132, 96, 238, 0.2), 
    transparent
  );
  animation: shimmer 3s infinite;
}

.navbar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(132, 96, 238, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(251, 222, 89, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

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

.brandName {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, 
    var(--white) 0%, 
    var(--accent-yellow-light) 30%,
    var(--primary-purple-light) 60%,
    var(--accent-yellow-light) 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  text-shadow: 0 0 40px rgba(251, 222, 89, 0.6),
               0 0 60px rgba(132, 96, 238, 0.4);
  animation: textShimmer 2.5s ease-in-out infinite,
             textPulse 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
  text-align: center;
  transform: scale(1);
  transition: transform var(--transition-base);
}

.brandName:hover {
  transform: scale(1.05);
  animation: textShimmer 1.5s ease-in-out infinite,
             textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 20px rgba(251, 222, 89, 0.5));
  }
  50% {
    filter: brightness(1.2) drop-shadow(0 0 40px rgba(251, 222, 89, 0.8));
  }
}

@keyframes textShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.navbar > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   BUTTONS - MODERN STYLES
   ============================================ */

.pro-button,
.client-signup,
.client-loginBtn {
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  background: linear-gradient(135deg, 
    rgba(102, 63, 219, 0.85) 0%, 
    rgba(132, 96, 238, 0.75) 100%);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  box-shadow: 0 4px 15px rgba(102, 63, 219, 0.4),
              0 0 20px rgba(132, 96, 238, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pro-button::after,
.client-signup::after,
.client-loginBtn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.1) 30%,
    transparent 70%);
  animation: liquidGlow 6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

.pro-button::before,
.client-signup::before,
.client-loginBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-purple) 100%);
  transition: left var(--transition-base);
  z-index: -1;
}

.pro-button:hover,
.client-signup:hover,
.client-loginBtn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(102, 63, 219, 0.5),
              0 0 30px rgba(132, 96, 238, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: linear-gradient(135deg, 
    rgba(102, 63, 219, 0.9) 0%, 
    rgba(132, 96, 238, 0.8) 100%);
  backdrop-filter: blur(20px) saturate(200%);
  border-color: rgba(255, 255, 255, 0.5);
}

.pro-button:hover::after,
.client-signup:hover::after,
.client-loginBtn:hover::after {
  opacity: 1;
}

.pro-button:hover::before,
.client-signup:hover::before,
.client-loginBtn:hover::before {
  left: 0;
}

.pro-button:active,
.client-signup:active,
.client-loginBtn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.deleteBtn {
  background: linear-gradient(135deg, var(--red-500) 0%, var(--red-600) 100%);
}

.deleteBtn::before {
  background: linear-gradient(135deg, var(--red-600) 0%, var(--red-500) 100%);
}

/* ============================================
   IMAGES & LOGOS
   ============================================ */

.brandImg,
.brandImg2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 1rem auto;
  padding: 0.75rem;
  animation: fadeInUp 0.6s ease-out;
  position: relative;
}

.brandImg::before,
.brandImg2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.5) 0%, 
    rgba(255, 192, 203, 0.2) 15%,
    rgba(255, 255, 192, 0.2) 25%,
    rgba(192, 255, 192, 0.2) 35%,
    rgba(192, 255, 255, 0.2) 45%,
    rgba(192, 192, 255, 0.2) 55%,
    rgba(255, 192, 255, 0.2) 65%,
    transparent 80%);
  animation: liquidGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
  opacity: 0.8;
  filter: blur(30px);
  border-radius: 50%;
}

.brandImg2 {
  margin-top: 2rem;
  padding-top: 1.5rem;
  margin-bottom: 1rem;
}

.brandImg img,
.brandImg2 img {
  max-width: 400px;
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  filter: drop-shadow(0 10px 30px rgba(102, 63, 219, 0.4))
          drop-shadow(0 0 50px rgba(251, 222, 89, 0.3))
          drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2))
          brightness(1.05)
          contrast(1.1);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
  animation: logoFloat 3s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 50%;
  padding: 0.5rem;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%);
}

.brandImg img:hover,
.brandImg2 img:hover {
  transform: scale(1.1) rotate(3deg);
  filter: drop-shadow(0 15px 50px rgba(102, 63, 219, 0.5))
          drop-shadow(0 0 80px rgba(251, 222, 89, 0.4))
          drop-shadow(0 25px 60px rgba(0, 0, 0, 0.3))
          brightness(1.15)
          contrast(1.15);
  animation-play-state: paused;
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.25) 0%, 
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%);
}

.brandImg:hover::before,
.brandImg2:hover::before {
  opacity: 1;
  filter: blur(35px);
  width: 140%;
  height: 140%;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) scale(1.01) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) scale(1.02) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) scale(1.01) rotate(1deg);
  }
}

@keyframes logoGlow {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes logoGlowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

@keyframes liquidGlow {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(-30%, -70%) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 0.3;
  }
  75% {
    transform: translate(-70%, -30%) rotate(270deg);
    opacity: 0.5;
  }
}

/* ============================================
   FORMS - MODERN STYLING
   ============================================ */

.loginForm,
.profInfo,
.proForm {
  flex: 1;
  min-width: 450px;
  max-width: 750px;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px 0 rgba(31, 38, 135, 0.3),
              0 8px 32px 0 rgba(31, 38, 135, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.9),
              inset 0 -1px 0 rgba(255, 255, 255, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.6);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  animation: fadeInUp 0.6s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.8);
  min-height: auto;
  justify-content: center;
  overflow: hidden;
}

.loginForm::before,
.profInfo::before,
.proForm::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.5) 0%, 
    rgba(255, 192, 203, 0.2) 15%,
    rgba(255, 255, 192, 0.2) 25%,
    rgba(192, 255, 192, 0.2) 35%,
    rgba(192, 255, 255, 0.2) 45%,
    rgba(192, 192, 255, 0.2) 55%,
    rgba(255, 192, 255, 0.2) 65%,
    transparent 80%);
  animation: liquidGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
  filter: blur(25px);
}

.loginForm > *,
.profInfo > *,
.proForm > * {
  position: relative;
  z-index: 1;
}

/* Center proForm when used in signup pages */
.bodyProSignUpForm .proForm {
  width: 90%;
  max-width: 600px;
  margin: 2rem auto;
  flex: none;
}

/* Note: loginForm in bodyLoginForm now uses home-content-wrapper layout */

.loginForm > h3 {
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
}

.loginForm > form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Modern login form layout - compact and intuitive */
.loginFormInput {
  gap: 1rem;
}

.loginFormInput > button {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Remove spacing from br tags in forms */
.loginFormInput > br,
.proFormInput > br {
  display: none;
}

.signUpText {
  margin: 0.5rem 0 0.25rem 0;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.loginForm > a {
  margin-top: 0;
}

.proForm {
  max-width: 600px;
}

.loginFormInput,
.proFormInput {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  align-items: stretch;
}

/* Label styling - labels should NOT have input styling */
label.formInput,
.formInput label {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.95rem;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
}

/* Input field styling - actual input elements */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
input[type="number"],
select,
textarea,
input.formInput,
select.formInput,
textarea.formInput {
  width: 100%;
  padding: 0.875rem 1.25rem;
  margin-top: 0.25rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.75) 0%, 
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.75) 100%);
  backdrop-filter: blur(15px) saturate(200%);
  -webkit-backdrop-filter: blur(15px) saturate(200%);
  transition: all var(--transition-base);
  outline: none;
  box-sizing: border-box;
  position: relative;
  box-shadow: 
    0 4px 16px 0 rgba(31, 38, 135, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 0 15px rgba(255, 192, 203, 0.2),
    0 0 20px rgba(255, 255, 192, 0.15),
    0 0 25px rgba(192, 255, 192, 0.1),
    0 0 30px rgba(192, 255, 255, 0.1),
    0 0 35px rgba(192, 192, 255, 0.15);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus,
input.formInput:focus,
select.formInput:focus,
textarea.formInput:focus {
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(20px) saturate(250%);
  box-shadow: 
    0 6px 24px 0 rgba(102, 63, 219, 0.35),
    0 0 0 2px rgba(255, 255, 255, 0.8),
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    0 0 20px rgba(255, 192, 203, 0.3),
    0 0 30px rgba(255, 255, 192, 0.25),
    0 0 40px rgba(192, 255, 192, 0.2),
    0 0 50px rgba(192, 255, 255, 0.2),
    0 0 60px rgba(192, 192, 255, 0.3),
    0 0 70px rgba(132, 96, 238, 0.25);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder {
  color: var(--gray-400);
}

/* File input styling */
input[type="file"] {
  padding: 0.75rem;
  cursor: pointer;
  border: 2px dashed rgba(255, 255, 255, 0.7);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.75) 0%, 
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.75) 100%);
  backdrop-filter: blur(15px) saturate(200%);
  -webkit-backdrop-filter: blur(15px) saturate(200%);
  position: relative;
  box-shadow: 
    0 4px 16px 0 rgba(31, 38, 135, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 0 15px rgba(255, 192, 203, 0.2),
    0 0 20px rgba(255, 255, 192, 0.15),
    0 0 25px rgba(192, 255, 192, 0.1),
    0 0 30px rgba(192, 255, 255, 0.1),
    0 0 35px rgba(192, 192, 255, 0.15);
}

input[type="file"]:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.85) 0%, 
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(18px) saturate(220%);
  box-shadow: 
    0 6px 20px 0 rgba(102, 63, 219, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 192, 203, 0.25),
    0 0 30px rgba(255, 255, 192, 0.2),
    0 0 40px rgba(192, 255, 192, 0.15),
    0 0 50px rgba(192, 255, 255, 0.15),
    0 0 60px rgba(192, 192, 255, 0.2);
}

input[type="file"]:focus {
  border-color: rgba(255, 255, 255, 0.95);
  border-style: solid;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(20px) saturate(250%);
  box-shadow: 
    0 6px 24px 0 rgba(102, 63, 219, 0.35),
    0 0 0 2px rgba(255, 255, 255, 0.8),
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    0 0 20px rgba(255, 192, 203, 0.3),
    0 0 30px rgba(255, 255, 192, 0.25),
    0 0 40px rgba(192, 255, 192, 0.2),
    0 0 50px rgba(192, 255, 255, 0.2),
    0 0 60px rgba(192, 192, 255, 0.3),
    0 0 70px rgba(132, 96, 238, 0.25);
}

/* Photo preview container */
.photo-preview-container {
  display: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.photo-preview-container.active {
  display: block;
}

.photo-preview {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 4px solid var(--primary-purple-light);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  display: block;
  transition: all var(--transition-base);
}

.photo-preview:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.photo-preview-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Select dropdown styling */
select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23663fdb' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Form field wrapper for label + input pairs */
.proFormInput > label.formInput + input,
.proFormInput > label.formInput + select,
.proFormInput > label.formInput + textarea {
  margin-top: 0.5rem;
}

/* Ensure all form elements are inside the container */
.proFormInput input,
.proFormInput select,
.proFormInput textarea,
.proFormInput label,
.proFormInput button {
  width: 100%;
  box-sizing: border-box;
}

/* Fix for inputs that come after labels */
.proFormInput label.formInput {
  margin-bottom: 0.5rem;
}

.proFormInput input:not([type="file"]),
.proFormInput select,
.proFormInput textarea {
  margin-top: 0;
  margin-bottom: 0;
}

/* File input special handling */
.proFormInput input[type="file"] {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.loginFormInput > button,
.proFormInput > button {
  margin-top: 1rem;
  width: auto;
  min-width: 200px;
  align-self: center;
  max-width: 100%;
}

/* Form container overflow fix */
.proForm,
.loginForm {
  overflow: visible;
  position: relative;
}

.proFormInput,
.loginFormInput {
  overflow: visible;
  position: relative;
}

/* Ensure form elements stay within container */
.proForm *,
.loginForm * {
  max-width: 100%;
  box-sizing: border-box;
}

/* Fix for form field groups */
.proFormInput > *,
.loginFormInput > * {
  width: 100%;
  max-width: 100%;
}

/* Special handling for file inputs */
.proFormInput input[type="file"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Ensure buttons don't overflow */
.proFormInput > button,
.loginFormInput > button {
  max-width: 100%;
  box-sizing: border-box;
}

/* ============================================
   HEADLINE SECTIONS - CLIENT & PRO
   ============================================ */

/* Home Content Wrapper - Side by Side Layout */
.home-content-wrapper {
  display: flex;
  gap: 4rem;
  width: 95%;
  max-width: 1600px;
  margin: 1rem auto;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
  padding: 0 1.5rem;
}

.headline-section {
  flex: 1;
  min-width: 450px;
  max-width: 750px;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px 0 rgba(31, 38, 135, 0.3),
              0 8px 32px 0 rgba(31, 38, 135, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.9),
              inset 0 -1px 0 rgba(255, 255, 255, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  min-height: auto;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.headline-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.5) 0%, 
    rgba(255, 192, 203, 0.2) 15%,
    rgba(255, 255, 192, 0.2) 25%,
    rgba(192, 255, 192, 0.2) 35%,
    rgba(192, 255, 255, 0.2) 45%,
    rgba(192, 192, 255, 0.2) 55%,
    rgba(255, 192, 255, 0.2) 65%,
    transparent 80%);
  animation: liquidGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
  filter: blur(25px);
}

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

.headline-main {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.headline-subtitle {
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Services Grid for Clients */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25),
              0 4px 16px 0 rgba(31, 38, 135, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.9),
              inset 0 -1px 0 rgba(255, 255, 255, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
  cursor: default;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  min-height: 120px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-item::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(255, 192, 203, 0.15) 15%,
    rgba(255, 255, 192, 0.15) 25%,
    rgba(192, 255, 192, 0.15) 35%,
    rgba(192, 255, 255, 0.15) 45%,
    rgba(192, 192, 255, 0.15) 55%,
    rgba(255, 192, 255, 0.15) 65%,
    transparent 80%);
  animation: liquidGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  filter: blur(20px);
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  transition: left 0.5s ease;
  z-index: 1;
}

.service-item:hover::before {
  left: 100%;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }
.service-item:nth-child(8) { animation-delay: 0.8s; }

.service-item:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 60px 0 rgba(102, 63, 219, 0.35),
              0 8px 32px 0 rgba(102, 63, 219, 0.25),
              inset 0 2px 0 rgba(255, 255, 255, 1),
              inset 0 -2px 0 rgba(255, 255, 255, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(40px) saturate(250%);
}

.service-item:hover::after {
  opacity: 0.9;
  filter: blur(25px);
}

.service-icon {
  font-size: 2.5rem;
  display: block;
  transition: transform var(--transition-base);
}

.service-item:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
}

.service-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Benefits Grid for Pros */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25),
              0 4px 16px 0 rgba(31, 38, 135, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.9),
              inset 0 -1px 0 rgba(255, 255, 255, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
  cursor: default;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  text-align: center;
  min-height: 200px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.benefit-item::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(255, 192, 203, 0.15) 15%,
    rgba(255, 255, 192, 0.15) 25%,
    rgba(192, 255, 192, 0.15) 35%,
    rgba(192, 255, 255, 0.15) 45%,
    rgba(192, 192, 255, 0.15) 55%,
    rgba(255, 192, 255, 0.15) 65%,
    transparent 80%);
  animation: liquidGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  filter: blur(20px);
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  transition: left 0.5s ease;
  z-index: 1;
}

.benefit-item:hover::before {
  left: 100%;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

.benefit-item:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 60px 0 rgba(102, 63, 219, 0.35),
              0 8px 32px 0 rgba(102, 63, 219, 0.25),
              inset 0 2px 0 rgba(255, 255, 255, 1),
              inset 0 -2px 0 rgba(255, 255, 255, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(40px) saturate(250%);
}

.benefit-item:hover::after {
  opacity: 0.9;
  filter: blur(25px);
}

.benefit-icon {
  font-size: 3rem;
  display: block;
  transition: transform var(--transition-base);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.2) rotate(10deg);
}

.benefit-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

/* Pro headline specific styling */
.pro-headline {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  box-shadow: 0 20px 60px 0 rgba(31, 38, 135, 0.3),
              0 8px 32px 0 rgba(31, 38, 135, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.9),
              inset 0 -1px 0 rgba(255, 255, 255, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.pro-headline::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.5) 0%, 
    rgba(255, 192, 203, 0.2) 15%,
    rgba(255, 255, 192, 0.2) 25%,
    rgba(192, 255, 192, 0.2) 35%,
    rgba(192, 255, 255, 0.2) 45%,
    rgba(192, 192, 255, 0.2) 55%,
    rgba(255, 192, 255, 0.2) 65%,
    transparent 80%);
  animation: liquidGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
  filter: blur(25px);
}

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

/* ============================================
   TITLES & TYPOGRAPHY
   ============================================ */

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--primary-dark);
  margin: 1.5rem auto;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.signUpText {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 0.5rem 0 0.25rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-600);
}

/* Center the sign up button */
.loginForm > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
}

.loginForm > a > .client-signup {
  width: auto;
  min-width: 200px;
}

.title2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-900);
}

h3 {
  font-size: 1.25rem;
  color: var(--gray-700);
}

/* ============================================
   PROFILE INFO
   ============================================ */

.profInfo {
  width: 90%;
  max-width: 800px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px 0 rgba(31, 38, 135, 0.3),
              0 8px 32px 0 rgba(31, 38, 135, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.9),
              inset 0 -1px 0 rgba(255, 255, 255, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.profInfo::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.5) 0%, 
    rgba(255, 192, 203, 0.2) 15%,
    rgba(255, 255, 192, 0.2) 25%,
    rgba(192, 255, 192, 0.2) 35%,
    rgba(192, 255, 255, 0.2) 45%,
    rgba(192, 192, 255, 0.2) 55%,
    rgba(255, 192, 255, 0.2) 65%,
    transparent 80%);
  animation: liquidGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
  filter: blur(25px);
}

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

.profObj {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
  flex: 1;
}

.profBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px 0 rgba(31, 38, 135, 0.3),
              0 8px 32px 0 rgba(31, 38, 135, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.9),
              inset 0 -1px 0 rgba(255, 255, 255, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  min-width: 250px;
}

.profBtn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.5) 0%, 
    rgba(255, 192, 203, 0.2) 15%,
    rgba(255, 255, 192, 0.2) 25%,
    rgba(192, 255, 192, 0.2) 35%,
    rgba(192, 255, 255, 0.2) 45%,
    rgba(192, 192, 255, 0.2) 55%,
    rgba(255, 192, 255, 0.2) 65%,
    transparent 80%);
  animation: liquidGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
  filter: blur(25px);
}

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

.profBtn .userImg {
  position: relative;
  z-index: 2;
}

/* Profile picture wrapper for liquid glass border */
.profile-img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.profile-img-wrapper::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, 
    rgba(132, 96, 238, 0.8) 0%,
    rgba(255, 192, 203, 0.6) 25%,
    rgba(255, 255, 192, 0.6) 50%,
    rgba(192, 255, 192, 0.6) 75%,
    rgba(192, 192, 255, 0.8) 100%);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  z-index: 0;
  filter: blur(10px);
  opacity: 0.9;
  pointer-events: none;
}

.profile-img-wrapper::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, 
    rgba(132, 96, 238, 0.6) 0%,
    rgba(192, 192, 255, 0.6) 50%,
    rgba(132, 96, 238, 0.6) 100%);
  z-index: -1;
  filter: blur(15px);
  opacity: 0.7;
  animation: liquidGlow 6s ease-in-out infinite;
  pointer-events: none;
}

.profile-img-wrapper:hover::before {
  opacity: 1;
  filter: blur(12px);
  animation: gradientShift 3s ease infinite;
}

.profile-img-wrapper:hover::after {
  opacity: 0.9;
  filter: blur(18px);
}

.profile-img-wrapper .userImg {
  position: relative;
  z-index: 1;
}

.profBtn > br {
  display: none;
}

.profBtn > a,
.profBtn > form {
  margin: 0;
  width: 100%;
  max-width: 220px;
}

.profBtn .pro-button {
  width: 100%;
  max-width: 220px;
}

.profBtn > form {
  display: flex;
  justify-content: center;
}

.mainProf {
  flex: 1;
  min-width: 300px;
}

/* ============================================
   SEARCH PAGE
   ============================================ */

.searchForm1 {
  background-image: url("/images/Superhero-2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  min-height: calc(100vh - 200px);
  min-height: calc(100dvh - 200px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 2rem 1rem;
  flex: 1;
}

.searchForm1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 4, 60, 0.15);
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
}

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

.searchForm1 .title2 {
  font-size: 2.5rem;
  color: var(--gray-900);
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8),
               0 0 20px rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.searchResults {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
}

/* ============================================
   CARDS - MODERN DESIGN
   ============================================ */

.card {
  width: 95%;
  max-width: 800px;
  margin: 1rem auto;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  box-shadow: 0 20px 60px 0 rgba(31, 38, 135, 0.3),
              0 8px 32px 0 rgba(31, 38, 135, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.9),
              inset 0 -1px 0 rgba(255, 255, 255, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: fadeInUp 0.6s ease-out;
}

.card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.5) 0%, 
    rgba(255, 192, 203, 0.2) 15%,
    rgba(255, 255, 192, 0.2) 25%,
    rgba(192, 255, 192, 0.2) 35%,
    rgba(192, 255, 255, 0.2) 45%,
    rgba(192, 192, 255, 0.2) 55%,
    rgba(255, 192, 255, 0.2) 65%,
    transparent 80%);
  animation: liquidGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
  filter: blur(25px);
}

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

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
  z-index: 1;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px 0 rgba(102, 63, 219, 0.4),
              0 12px 40px 0 rgba(102, 63, 219, 0.3),
              inset 0 2px 0 rgba(255, 255, 255, 1),
              inset 0 -2px 0 rgba(255, 255, 255, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(50px) saturate(250%);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.98) 100%);
}

.card:hover::before {
  opacity: 1;
  filter: blur(35px);
}

.firstinfo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.userImg {
  border-radius: var(--radius-full);
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: none;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
  display: block;
}

.firstinfo::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, 
    rgba(132, 96, 238, 0.8) 0%,
    rgba(255, 192, 203, 0.6) 25%,
    rgba(255, 255, 192, 0.6) 50%,
    rgba(192, 255, 192, 0.6) 75%,
    rgba(192, 192, 255, 0.8) 100%);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  z-index: 0;
  filter: blur(10px);
  opacity: 0.9;
}

.firstinfo::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, 
    rgba(132, 96, 238, 0.6) 0%,
    rgba(192, 192, 255, 0.6) 50%,
    rgba(132, 96, 238, 0.6) 100%);
  z-index: -1;
  filter: blur(15px);
  opacity: 0.7;
  animation: liquidGlow 6s ease-in-out infinite;
}

.card:hover .userImg {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(132, 96, 238, 0.4),
              0 0 30px rgba(132, 96, 238, 0.3),
              0 0 50px rgba(255, 192, 203, 0.2);
}

.card:hover .firstinfo::before {
  opacity: 1;
  filter: blur(12px);
  animation: gradientShift 3s ease infinite;
}

.card:hover .firstinfo::after {
  opacity: 0.9;
  filter: blur(18px);
}

/* Book button container - centered and bigger */
.book-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem 0;
}

.card .book-button-container .button-24 {
  min-width: 180px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.profileinfo {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.profileinfo h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

.profileinfo h3 {
  font-size: 1rem;
  color: var(--gray-600);
  margin: 0;
}

.extraInf {
  font-style: italic;
  color: var(--gray-600);
}

.names {
  color: var(--primary-dark);
  font-weight: 700;
}

/* ============================================
   BUTTON-24 STYLE
   ============================================ */

.button-24 {
  background: linear-gradient(135deg, 
    rgba(102, 63, 219, 0.9) 0%, 
    rgba(132, 96, 238, 0.85) 50%,
    rgba(102, 63, 219, 0.9) 100%);
  backdrop-filter: blur(15px) saturate(200%);
  -webkit-backdrop-filter: blur(15px) saturate(200%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 16px 0 rgba(102, 63, 219, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.4),
              0 0 20px rgba(132, 96, 238, 0.2);
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-base);
  user-select: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.button-24::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  transition: left 0.5s ease;
}

.button-24:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px 0 rgba(102, 63, 219, 0.4),
              0 0 0 2px rgba(255, 255, 255, 0.4),
              inset 0 2px 0 rgba(255, 255, 255, 0.5),
              0 0 30px rgba(132, 96, 238, 0.3);
  background: linear-gradient(135deg, 
    rgba(132, 96, 238, 0.95) 0%, 
    rgba(102, 63, 219, 0.9) 50%,
    rgba(132, 96, 238, 0.95) 100%);
  backdrop-filter: blur(20px) saturate(250%);
}

.button-24:hover::before {
  left: 100%;
}

.button-24:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px 0 rgba(102, 63, 219, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* ============================================
   BACKGROUND IMAGES
   ============================================ */

.backImg {
  background-image: url("/images/Superhero-1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  min-height: calc(100vh - 200px);
  min-height: calc(100dvh - 200px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 2rem 1rem;
  flex: 1;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
}

.backImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 4, 60, 0.1);
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
}

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

.transImg {
  width: 90%;
  max-width: 800px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-radius: var(--radius-2xl);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px 0 rgba(31, 38, 135, 0.3),
              0 8px 32px 0 rgba(31, 38, 135, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.9),
              inset 0 -1px 0 rgba(255, 255, 255, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.transImg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.5) 0%, 
    rgba(255, 192, 203, 0.2) 15%,
    rgba(255, 255, 192, 0.2) 25%,
    rgba(192, 255, 192, 0.2) 35%,
    rgba(192, 255, 255, 0.2) 45%,
    rgba(192, 192, 255, 0.2) 55%,
    rgba(255, 192, 255, 0.2) 65%,
    transparent 80%);
  animation: liquidGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
  filter: blur(25px);
}

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

.transImg:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px 0 rgba(102, 63, 219, 0.4),
              0 12px 40px 0 rgba(102, 63, 219, 0.3),
              inset 0 2px 0 rgba(255, 255, 255, 1),
              inset 0 -2px 0 rgba(255, 255, 255, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(50px) saturate(250%);
}

.transImg:hover::before {
  opacity: 1;
  filter: blur(35px);
}

.confText {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.confText h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  text-align: center;
}

.textConf {
  font-size: 1.25rem;
  margin: 0;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--gray-700);
  line-height: 1.6;
  text-align: center;
}

/* ============================================
   LINKS
   ============================================ */

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

a:hover {
  color: var(--primary-purple);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ============================================
   RESPONSIVE DESIGN - IMPROVED
   ============================================ */

@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .brandName {
    font-size: 1.35rem;
  }

  .home-content-wrapper {
    width: 98%;
    gap: 3rem;
    padding: 0 1rem;
    margin: 1rem auto;
  }

  .headline-section,
  .loginForm,
  .proForm,
  .profInfo {
    min-width: 400px;
    max-width: 100%;
    padding: 2rem 1.75rem;
  }

  .card {
    width: 95%;
    max-width: 100%;
    margin: 0.75rem auto;
    padding: 1.75rem 1.5rem;
  }

  .pro-button,
  .client-signup,
  .client-loginBtn {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    animation: none;
  }

  .navbar::before,
  .navbar::after {
    animation: none;
  }

  .brandName {
    font-size: 1.15rem;
    text-align: center;
    animation: none;
  }

  .navbar > div:first-child {
    flex: 1;
    width: 100%;
    justify-content: center;
  }

  .navbar > div:last-child {
    position: relative;
    right: auto;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .pro-button,
  .client-signup,
  .client-loginBtn {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
    width: 100%;
    max-width: 200px;
  }

  .home-content-wrapper {
    flex-direction: column;
    width: 98%;
    gap: 2.5rem;
    margin-bottom: 1rem;
    padding: 0 0.75rem;
  }

  .loginForm,
  .proForm,
  .profInfo {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 2rem 1.5rem;
    margin: 0;
  }

  .bodyProSignUpForm .proForm {
    width: 95%;
    max-width: 600px;
    margin: 1.5rem auto;
  }


  .headline-section {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 2rem 1.5rem;
    margin: 0;
  }

  .card {
    width: 95%;
    max-width: 100%;
    margin: 0.75rem auto;
    padding: 1.5rem 1.25rem;
  }

  .headline-main {
    font-size: 2rem;
  }

  .headline-subtitle {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .service-item {
    padding: 1.25rem 0.75rem;
  }

  .service-icon {
    font-size: 2rem;
  }

  .service-text {
    font-size: 0.85rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-item {
    padding: 1.5rem 1rem;
  }

  .benefit-icon {
    font-size: 2.5rem;
  }

  .benefit-title {
    font-size: 1.1rem;
  }

  .benefit-text {
    font-size: 0.9rem;
  }

  .social-footer {
    padding: 2rem 1.5rem;
    margin-top: auto;
  }

  .social-footer-title {
    font-size: 1.25rem;
  }

  .social-icons-container {
    gap: 1.5rem;
  }

  .social-icon {
    width: 55px;
    height: 55px;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }

  .loginFormInput,
  .proFormInput {
    width: 100%;
  }

  .formInput {
    width: 100%;
  }

  .card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    max-width: 100%;
  }

  .profObj {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .title2 {
    font-size: 2rem;
  }

  .brandImg,
  .brandImg2 {
    padding: 0.75rem;
    margin: 1.5rem auto 0.75rem auto;
  }

  .brandImg img,
  .brandImg2 img {
    max-width: 320px;
  }

  .signUpText {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .navbar {
    padding: 0.75rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .brandName {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .navbar > div:first-child {
    width: 100%;
    justify-content: center;
  }

  .navbar > div:last-child {
    position: relative;
    right: auto;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .pro-button,
  .client-signup,
  .client-loginBtn {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
    width: 100%;
    max-width: 180px;
  }

  .home-content-wrapper {
    flex-direction: column;
    width: 98%;
    gap: 2rem;
    margin-bottom: 1rem;
    padding: 0 0.75rem;
  }

  .loginForm,
  .proForm,
  .profInfo {
    padding: 1.75rem 1.25rem;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin: 0;
  }

  .bodyProSignUpForm .proForm {
    width: 98%;
    max-width: 600px;
    margin: 1rem auto;
  }


  .headline-section {
    padding: 1.75rem 1.25rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .card {
    width: 95%;
    max-width: 100%;
    margin: 0.5rem auto;
    padding: 1.5rem 1.25rem;
  }

  .brandImg,
  .brandImg2 {
    padding: 0.75rem;
    margin: 1.25rem auto 0.5rem auto;
  }

  .brandImg img,
  .brandImg2 img {
    max-width: 280px;
  }

  .headline-main {
    font-size: 1.75rem;
  }

  .headline-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    padding: 1rem 0.5rem;
  }

  .service-icon {
    font-size: 1.75rem;
  }

  .service-text {
    font-size: 0.8rem;
  }

  .benefits-grid {
    gap: 1.25rem;
  }

  .benefit-item {
    padding: 1.25rem 0.875rem;
  }

  .benefit-icon {
    font-size: 2rem;
  }

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

  .benefit-text {
    font-size: 0.85rem;
  }

  .social-footer {
    padding: 1.5rem 1rem;
    margin-top: auto;
  }

  .social-footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .social-icons-container {
    gap: 1rem;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .social-icon svg {
    width: 22px;
    height: 22px;
  }

  .loginForm > a > .client-signup {
    min-width: 180px;
  }

  .card {
    padding: 1.25rem;
    gap: 1rem;
  }

  .userImg {
    width: 100px;
    height: 100px;
  }

  .firstinfo::before,
  .firstinfo::after {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }

  .transImg {
    padding: 2rem 1.5rem;
  }

  .confText h2 {
    font-size: 2rem;
  }

  .textConf {
    font-size: 1.1rem;
  }

  .card .book-button-container .button-24 {
    min-width: 160px;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

  .title {
    font-size: 1.25rem;
  }

  .title2 {
    font-size: 1.5rem;
  }

  .signUpText {
    font-size: 0.95rem;
  }

  .brandImg,
  .brandImg2 {
    padding: 0.5rem;
    margin: 1rem auto 0.5rem auto;
  }

  .brandImg img,
  .brandImg2 img {
    max-width: 240px;
  }
}

/* Extra small devices */
@media (max-width: 320px) {
  .navbar {
    padding: 0.5rem;
  }

  .brandName {
    font-size: 0.85rem;
  }

  .pro-button,
  .client-signup,
  .client-loginBtn {
    padding: 0.5rem 0.875rem;
    font-size: 0.65rem;
    max-width: 160px;
  }

  .home-content-wrapper {
    width: 98%;
    gap: 1.75rem;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
  }

  .loginForm,
  .proForm,
  .profInfo {
    padding: 1.5rem 1rem;
    min-width: 100%;
  }

  .userImg {
    width: 80px;
    height: 80px;
  }

  .firstinfo::before,
  .firstinfo::after {
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
  }

  .transImg {
    padding: 1.5rem 1.25rem;
    width: 95%;
  }

  .confText h2 {
    font-size: 1.75rem;
  }

  .textConf {
    font-size: 1rem;
  }

  .card .book-button-container .button-24 {
    min-width: 140px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .headline-section {
    padding: 1.5rem 1rem;
    min-width: 100%;
  }

  .card {
    width: 95%;
    max-width: 100%;
    margin: 0.5rem auto;
    padding: 1.25rem 1rem;
  }

  .social-footer {
    padding: 1.25rem 0.75rem;
    margin-top: auto;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.proFormList {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-900);
  padding: 0.875rem 1.25rem;
  padding-right: 2.5rem;
  margin-top: 0.25rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.75) 0%, 
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.75) 100%);
  backdrop-filter: blur(15px) saturate(200%);
  -webkit-backdrop-filter: blur(15px) saturate(200%);
  box-shadow: 
    0 4px 16px 0 rgba(31, 38, 135, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 0 15px rgba(255, 192, 203, 0.2),
    0 0 20px rgba(255, 255, 192, 0.15),
    0 0 25px rgba(192, 255, 192, 0.1),
    0 0 30px rgba(192, 255, 255, 0.1),
    0 0 35px rgba(192, 192, 255, 0.15);
  transition: all var(--transition-base);
  outline: none;
  box-sizing: border-box;
  cursor: pointer;
  width: 100%;
  max-width: 500px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23663fdb' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.proFormList:focus {
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 6px 24px 0 rgba(102, 63, 219, 0.3),
    0 0 0 2px rgba(255, 255, 255, 0.7),
    inset 0 2px 0 rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 192, 203, 0.3),
    0 0 30px rgba(255, 255, 192, 0.25),
    0 0 40px rgba(192, 255, 192, 0.2),
    0 0 50px rgba(192, 255, 255, 0.2),
    0 0 60px rgba(192, 192, 255, 0.3),
    0 0 70px rgba(132, 96, 238, 0.25);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(20px) saturate(250%);
}

.proFormList:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.85) 0%, 
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.85) 100%);
}

.searchForm1 .proFormInput {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 600px;
  padding: 0 1rem;
}

.searchForm1 #search-btn {
  width: 100%;
  max-width: 500px;
  margin-top: 0.5rem;
}

#search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

/* Responsive styles for search page */
@media (max-width: 768px) {
  .searchForm1 .title2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .proFormList {
    max-width: 100%;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    padding-right: 2.25rem;
  }

  .searchForm1 .proFormInput {
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .searchForm1 #search-btn {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .searchForm1 .title2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .proFormList {
    font-size: 0.9rem;
    padding: 0.7rem 0.875rem;
    padding-right: 2rem;
  }
}

/* Error Messages */
p[style*="color: red"] {
  color: var(--red-600) !important;
  font-weight: 500;
  padding: 0.75rem;
  background-color: rgba(239, 68, 68, 0.1);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--red-600);
  margin-top: 0.5rem;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus Visible for Accessibility */
*:focus-visible {
  outline: 2px solid var(--primary-purple);
  outline-offset: 2px;
}

/* ============================================
   SOCIAL MEDIA FOOTER
   ============================================ */

.social-footer {
  width: 100%;
  margin-top: auto;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, 
    rgba(26, 13, 74, 0.85) 0%, 
    rgba(42, 21, 102, 0.75) 50%, 
    rgba(26, 13, 74, 0.85) 100%);
  background-size: 200% 200%;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 3px solid rgba(132, 96, 238, 0.5);
  box-shadow: 0 -8px 32px 0 rgba(31, 38, 135, 0.2),
              0 -4px 20px rgba(102, 63, 219, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  animation: gradientShift 8s ease infinite;
  flex-shrink: 0;
}

.social-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(132, 96, 238, 0.2), 
    transparent
  );
  animation: shimmer 3s infinite;
}

.social-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.social-footer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(251, 222, 89, 0.3);
  letter-spacing: 0.02em;
}

.social-icons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  z-index: 1;
}

.social-icon:nth-child(1) { animation-delay: 0.1s; }
.social-icon:nth-child(2) { animation-delay: 0.2s; }
.social-icon:nth-child(3) { animation-delay: 0.3s; }
.social-icon:nth-child(4) { animation-delay: 0.4s; }
.social-icon:nth-child(5) { animation-delay: 0.5s; }

.social-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all var(--transition-base);
}

.social-icon:hover::before {
  width: 100px;
  height: 100px;
}

.social-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: rgba(132, 96, 238, 0.6);
  box-shadow: 0 8px 25px rgba(102, 63, 219, 0.5),
              0 0 30px rgba(132, 96, 238, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.3) 0%, 
    rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(20px) saturate(200%);
}

.social-icon:hover svg {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(251, 222, 89, 0.4));
}

/* Individual icon colors on hover */
.social-icon.instagram:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
}

.social-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-icon.twitter:hover {
  background: #000000;
  border-color: #000000;
}

.social-icon.tiktok:hover {
  background: linear-gradient(135deg, #000000 0%, #ff0050 100%);
  border-color: #ff0050;
}

.social-icon.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.social-icon:active {
  transform: translateY(-2px) scale(1.05);
}
