/* Style for login-register btn */

.login-btn, .register-btn {
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.login-btn {
  background-color: transparent;
  color: #333;
  border: 1px solid #333;
}

.register-btn {
  background-color: #007bff;
  color: white;
  border: 1px solid #007bff;
}

.login-btn:hover {
  background-color: #f0f0f0;
}

.register-btn:hover {
  background-color: #0056b3;
}

/* Active state for buttons */
.login-btn:active, .register-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hero section */
.hero {
  height: 400px;
  background-image: url('../assets/images/people.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  animation: heroAnimation 20s ease-in-out infinite;
  overflow: hidden;
}

@keyframes heroAnimation {
  0% {
    background-size: 100%;
    background-position: center;
  }
  50% {
    background-size: 110%;
    background-position: center 45%;
  }
  100% {
    background-size: 100%;
    background-position: center;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 20px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7338A0, #9B6B9E);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(115, 56, 160, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: #f8f5fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 1.8rem;
  color: #7338A0;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #2d1a45;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.service-link {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #7338A0;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-top: auto;
}

.service-link:hover {
  background-color: #581845;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(115, 56, 160, 0.3);
}

.service-link.disabled {
  background-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Hero Section Mobile */
  .hero {
    height: 300px;
    animation: none !important;
    background-attachment: scroll !important;
  }

  .hero-overlay {
    padding: 15px;
    animation: none !important;
  }

  .hero-overlay h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .hero-overlay p {
    font-size: 1rem;
    max-width: 90%;
    line-height: 1.5;
  }

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

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 1rem;
  }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
  /* Hero Section Small Mobile */
  .hero {
    height: 250px;
    animation: none !important;
    background-attachment: scroll !important;
  }

  .hero-overlay {
    padding: 10px;
    animation: none !important;
  }

  .hero-overlay h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .hero-overlay p {
    font-size: 0.9rem;
    max-width: 95%;
    line-height: 1.4;
    margin-bottom: 15px;
  }
}

/* Very small devices (320px and down) */
@media (max-width: 320px) {
  /* Hero Section Extra Small Mobile */
  .hero {
    height: 220px;
  }

  .hero-overlay h2 {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }

  .hero-overlay p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}

/* Animation for Cards */
@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flip-card {
  animation: cardEntrance 0.6s ease-out forwards;
 
}

/* Add header-right container styles */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.logreg-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Side Tab Styles */
.side-tab {
  display: none;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px 0 0 8px;
  z-index: 1000;
  animation: slideIn 0.3s ease-out;
}

.tab-content {
  padding: 20px;
}

.tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.tab-logo {
  width: 50px;
  height: 50px;
}

.close-tab {
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.close-tab:hover {
  color: #333;
}

.tab-body {
  text-align: center;
}

.tab-body h3 {
  color: #dc3545;
  margin-bottom: 10px;
}

.tab-body p {
  color: #666;
  margin-bottom: 20px;
}

.tab-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-login-btn, .tab-register-btn {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-login-btn {
  background-color: #7338A0;
  color: white;
}

.tab-login-btn:hover {
  background-color: #581845;
}

.tab-register-btn {
  background-color: #9B6B9E;
  color: white;
}

.tab-register-btn:hover {
  background-color: #7338A0;
}

@keyframes slideIn {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    right: 0;
    opacity: 1;
  }
  to {
    right: -300px;
    opacity: 0;
  }
}

.side-tab.sliding-out {
  animation: slideOut 0.3s ease-in forwards;
}

/* ========================================
   SERVICES VALIDATION AND CONFIRMATION MODALS
   ======================================== */

/* Base Modal Overlay */
.services-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  overflow-y: auto;
}

.services-modal.show {
  display: flex !important;
}

/* Modal Content Container */
.services-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: servicesModalFade 0.3s ease-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  margin: auto;
  box-sizing: border-box;
}

@keyframes servicesModalFade {
  from {
    opacity: 0;
    transform: translateY(-2rem) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modal Header */
.services-modal-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e9ecef;
}

.services-modal-header h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2c3e50;
}

.services-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6c757d;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s ease;
  border-radius: 4px;
}

.services-modal-close:hover {
  color: #495057;
  background-color: #f8f9fa;
}

/* Modal Body */
.services-modal-body {
  padding: 2rem;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.services-modal-body p {
  color: #495057;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Modal Footer */
.services-modal-footer {
  padding: 1rem 2rem 2rem 2rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  border-top: 1px solid #e9ecef;
}

/* Button Styles */
.services-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 120px;
  text-decoration: none;
  box-sizing: border-box;
}

.services-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.services-btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.services-btn-primary:hover {
  background: linear-gradient(135deg, #764ba2, #667eea);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.services-btn-secondary {
  background: #6c757d;
  color: white;
}

.services-btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.services-btn-warning {
  background: linear-gradient(135deg, #ffc107, #fd7e14);
  color: white;
}

.services-btn-warning:hover {
  background: linear-gradient(135deg, #fd7e14, #ffc107);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Validation Modal Specific Styles */
.validation-modal .services-modal-header {
  background: linear-gradient(135deg, #ffc107, #fd7e14);
  color: white;
  border-bottom: none;
}

.validation-modal .services-modal-header h2 {
  color: white;
}

.validation-modal .services-modal-close {
  color: white;
}

.validation-modal .services-modal-close:hover {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.1);
}

.validation-modal .services-modal-body {
  text-align: center;
}

.validation-modal .services-modal-body p:first-child {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.missing-fields-list {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  text-align: left;
  list-style: none;
}

.missing-fields-list li {
  color: #856404;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.missing-fields-list li::before {
  content: '•';
  color: #dc3545;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.validation-icon {
  text-align: center;
  margin: 1.5rem 0 1rem 0;
}

.validation-icon i {
  font-size: 3rem;
  color: #ffc107;
}

/* Confirmation Modal Specific Styles */
.confirmation-modal .services-modal-header {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-bottom: none;
}

.confirmation-modal .services-modal-header h2 {
  color: white;
}

.confirmation-modal .services-modal-close {
  color: white;
}

.confirmation-modal .services-modal-close:hover {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.1);
}

.confirmation-modal .services-modal-body {
  text-align: center;
}

.confirmation-modal .services-modal-body p:first-child {
  font-weight: 600;
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.confirmation-modal .services-modal-body p:last-of-type {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #667eea;
}

.confirmation-icon {
  text-align: center;
  margin: 1.5rem 0 1rem 0;
}

.confirmation-icon i {
  font-size: 3rem;
  color: #667eea;
}

/* Responsive Design for Services Modals */
@media (max-width: 768px) {
  .services-modal {
    padding: 0.75rem;
    align-items: center;
  }

  .services-modal-content {
    max-width: 95%;
    width: 95%;
    margin: 0;
    max-height: 85vh;
  }

  .services-modal-header {
    padding: 1rem;
  }

  .services-modal-header h2 {
    font-size: 1.2rem;
    gap: 0.375rem;
  }

  .services-modal-header h2 i {
    font-size: 1.1rem;
  }

  .services-modal-body {
    padding: 1.25rem;
  }

  .services-modal-body p {
    font-size: 0.95rem;
  }

  .services-modal-footer {
    padding: 1rem;
    flex-direction: column;
    gap: 0.625rem;
  }

  .services-btn {
    width: 100%;
    min-width: auto;
    padding: 0.875rem 1.25rem;
  }

  .validation-icon i,
  .confirmation-icon i {
    font-size: 2.5rem;
  }

  .confirmation-modal .services-modal-body p:last-of-type {
    font-size: 0.85rem;
    padding: 0.875rem;
  }
}

@media (max-width: 480px) {
  .services-modal {
    padding: 0.5rem;
  }

  .services-modal-content {
    max-width: 98%;
    width: 98%;
    max-height: 90vh;
    border-radius: 10px;
  }

  .services-modal-header {
    padding: 0.875rem;
  }

  .services-modal-header h2 {
    font-size: 1.05rem;
    gap: 0.3rem;
  }

  .services-modal-header h2 i {
    font-size: 1rem;
  }

  .services-modal-close {
    font-size: 1.3rem;
    padding: 0.2rem;
  }

  .services-modal-body {
    padding: 1rem;
  }

  .services-modal-body p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .services-modal-footer {
    padding: 0.875rem;
    gap: 0.5rem;
  }

  .services-btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .missing-fields-list {
    padding: 0.75rem;
  }

  .missing-fields-list li {
    font-size: 0.875rem;
  }

  .validation-icon i,
  .confirmation-icon i {
    font-size: 2.25rem;
  }

  .confirmation-modal .services-modal-body p:last-of-type {
    font-size: 0.8rem;
    padding: 0.75rem;
    margin-top: 0.75rem;
  }
}

@media (max-width: 360px) {
  .services-modal {
    padding: 0.375rem;
  }

  .services-modal-content {
    max-width: 99%;
    width: 99%;
    max-height: 92vh;
    border-radius: 8px;
  }

  .services-modal-header {
    padding: 0.75rem;
  }

  .services-modal-header h2 {
    font-size: 0.95rem;
    gap: 0.25rem;
  }

  .services-modal-header h2 i {
    font-size: 0.9rem;
  }

  .services-modal-close {
    font-size: 1.2rem;
  }

  .services-modal-body {
    padding: 0.875rem;
  }

  .services-modal-body p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .services-modal-footer {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .services-btn {
    padding: 0.625rem 0.875rem;
    font-size: 0.8rem;
  }

  .validation-icon i,
  .confirmation-icon i {
    font-size: 2rem;
    margin: 1rem 0 0.75rem 0;
  }

  .confirmation-modal .services-modal-body p:last-of-type {
    font-size: 0.75rem;
    padding: 0.625rem;
    margin-top: 0.625rem;
  }

  .missing-fields-list {
    padding: 0.625rem;
  }

  .missing-fields-list li {
    font-size: 0.8rem;
  }
}

/* Animation for modal close */
.services-modal.closing .services-modal-content {
  animation: servicesModalFadeOut 0.2s ease-in forwards;
}

@keyframes servicesModalFadeOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-1rem) scale(0.95);
  }
}

/* ========================================
   MODERN IMPORTANT NOTES SECTION
   ======================================== */

.requirements-list {
  margin-top: 2rem;
}

.requirement-item {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border: 1px solid #e3e8ff;
  border-radius: 16px;
  padding: 0;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.requirement-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.requirement-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

.requirement-header i {
  font-size: 1.2rem;
  opacity: 0.9;
}

.requirement-content {
  padding: 1.5rem;
}

.requirement-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.requirement-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(102, 126, 234, 0.04);
  border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  line-height: 1.5;
}

.requirement-content ul li:hover {
  background: rgba(102, 126, 234, 0.08);
  transform: translateX(4px);
}

.requirement-content ul li i {
  color: #667eea;
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.requirement-note {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 1px solid #ffc107;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-weight: 500;
  color: #856404;
  line-height: 1.5;
}

.requirement-note i {
  color: #f39c12;
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Enhanced Icons for Different Types */
.requirement-content ul li:nth-child(1) i { /* Calendar */
  color: #28a745;
}

.requirement-content ul li:nth-child(2) i { /* Clock */
  color: #17a2b8;
}

.requirement-content ul li:nth-child(3) i { /* User Clock */
  color: #6f42c1;
}

.requirement-content ul li:nth-child(4) i { /* ID Card */
  color: #fd7e14;
}

.requirement-content ul li:nth-child(5) i { /* Check Circle */
  color: #20c997;
}

/* Responsive Design */
@media (max-width: 768px) {
  .requirement-header {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .requirement-content {
    padding: 1.25rem;
  }

  .requirement-content ul {
    gap: 0.75rem;
  }

  .requirement-content ul li {
    padding: 0.875rem;
    gap: 0.75rem;
    font-size: 0.9rem;
  }

  .requirement-note {
    padding: 1rem 1.25rem;
    margin: 1.25rem;
    margin-bottom: 0;
    gap: 0.75rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .requirements-list {
    margin-top: 1.5rem;
  }

  .requirement-item {
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .requirement-header {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    gap: 0.5rem;
  }

  .requirement-content {
    padding: 1rem;
  }

  .requirement-content ul li {
    padding: 0.75rem;
    gap: 0.5rem;
    font-size: 0.85rem;
    flex-direction: row;
    align-items: flex-start;
  }

  .requirement-content ul li i {
    font-size: 1rem;
  }

  .requirement-note {
    padding: 0.875rem 1rem;
    margin: 1rem;
    margin-bottom: 0;
    gap: 0.5rem;
    font-size: 0.85rem;
  }
}

/* Animation for when the section loads */
.requirement-item {
  animation: slideInUp 0.6s ease-out;
}

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

/* Enhanced visual hierarchy */
.requirement-content ul li strong {
  color: #2c3e50;
  font-weight: 600;
}

.requirement-content ul li .time {
  color: #667eea;
  font-weight: 600;
}

.requirement-content ul li .highlight {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}/* =====
===================================
   MODERN PICKUP SCHEDULE NOTE SECTION
   ======================================== */

.schedule-note {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  border: 1px solid #ffb74d;
  border-left: 4px solid #ff9800;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.schedule-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9800, #ffc107, #ff9800);
  animation: shimmer 2s ease-in-out infinite;
}

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

.schedule-note:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.2);
  border-color: #ff9800;
}

.schedule-note i {
  color: #e65100;
  font-size: 1.3rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.schedule-note {
  color: #bf360c;
  font-weight: 500;
  line-height: 1.6;
  font-size: 0.95rem;
}

.schedule-note strong {
  color: #e65100;
  font-weight: 600;
}

/* Enhanced version with better content structure */
.modern-schedule-note {
  background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
  border: 1px solid #81c784;
  border-left: 4px solid #4caf50;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0 2rem 0;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.modern-schedule-note:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.2);
}

.schedule-note-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #2e7d32;
  font-weight: 600;
  font-size: 1.05rem;
}

.schedule-note-header i {
  color: #4caf50;
  font-size: 1.2rem;
}

.schedule-note-content {
  color: #1b5e20;
  line-height: 1.6;
  font-size: 0.95rem;
}

.schedule-note-content .highlight {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.schedule-note-content .office-hours {
  color: #2e7d32;
  font-weight: 600;
  background: rgba(76, 175, 80, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin: 0 0.25rem;
}

/* Responsive Design for Schedule Notes */
@media (max-width: 768px) {
  .schedule-note,
  .modern-schedule-note {
    padding: 1rem 1.25rem;
    margin: 1.25rem 0 1.5rem 0;
    gap: 0.75rem;
    border-radius: 8px;
  }

  .schedule-note {
    font-size: 0.9rem;
  }

  .schedule-note i {
    font-size: 1.1rem;
  }

  .schedule-note-header {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .schedule-note-content {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .schedule-note,
  .modern-schedule-note {
    padding: 0.875rem 1rem;
    margin: 1rem 0;
    gap: 0.5rem;
  }

  .schedule-note {
    font-size: 0.85rem;
  }

  .schedule-note i {
    font-size: 1rem;
  }

  .schedule-note-header {
    font-size: 0.95rem;
    gap: 0.5rem;
  }

  .schedule-note-content {
    font-size: 0.85rem;
  }

  .schedule-note-content .office-hours {
    display: block;
    margin: 0.25rem 0;
    text-align: center;
  }
}

/* Alternative modern pickup note styles */
.pickup-info-card {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  border: 1px solid #ba68c8;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(186, 104, 200, 0.15);
  transition: all 0.3s ease;
}

.pickup-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #9c27b0, #ba68c8, #9c27b0);
}

.pickup-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(186, 104, 200, 0.2);
}

.pickup-info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pickup-info-icon {
  background: linear-gradient(135deg, #9c27b0, #ba68c8);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.pickup-info-title {
  color: #4a148c;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

.pickup-info-content {
  color: #6a1b9a;
  line-height: 1.6;
  font-size: 0.95rem;
}

.pickup-info-content .important {
  color: #4a148c;
  font-weight: 600;
}

/* Animation for pickup info cards */
.pickup-info-card {
  animation: slideInFromRight 0.6s ease-out;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}/* =====
===================================
   ENHANCED FIELD HINT STYLING
   ======================================== */

.field-hint {
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9ff 100%);
  border: 1px solid #bbdefb;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  margin: 1.25rem 0 0.75rem 0;
  font-size: 0.9rem;
  color: #1565c0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.1);
  transition: all 0.3s ease;
}

.field-hint::before {
  content: '\f05a';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #2196f3;
  flex-shrink: 0;
  font-size: 1rem;
}

.field-hint:hover {
  background: linear-gradient(135deg, #e1f5fe 0%, #f3e5f5 100%);
  border-color: #2196f3;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.15);
}

/* Responsive adjustments for field hints */
@media (max-width: 768px) {
  .field-hint {
    padding: 0.75rem 0.875rem;
    margin: 1rem 0 0.5rem 0;
    font-size: 0.85rem;
    gap: 0.375rem;
  }

  .field-hint::before {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .field-hint {
    padding: 0.625rem 0.75rem;
    margin: 0.875rem 0 0.375rem 0;
    font-size: 0.8rem;
    border-radius: 6px;
  }

  .field-hint::before {
    font-size: 0.85rem;
  }
}

/* ========================================
   FORM FIELD STYLES (NO TRANSFORM ANIMATIONS)
   ======================================== */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.form-field {
  position: relative;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.required-label::after {
  content: ' *';
  color: #e74c3c;
  font-weight: bold;
}

.form-field input[type="date"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.5rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
}

/* Focus styles WITHOUT transform animations */
.form-field input[type="date"]:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Hover styles WITHOUT transform animations */
.form-field input[type="date"]:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

/* Enhanced Select Dropdown */
.form-field select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  padding-right: 3rem;
  appearance: none;
  cursor: pointer;
}

.form-field select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23667eea' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

/* Date Input Enhancement */
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23667eea'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
  background-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator:hover {
  background-color: rgba(102, 126, 234, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 1.5rem 0;
  }

  .form-field input[type="date"],
  .form-field select,
  .form-field textarea {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .form-grid {
    gap: 1rem;
    margin: 1rem 0;
  }

  .form-field label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .form-field input[type="date"],
  .form-field select,
  .form-field textarea {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
    border-radius: 8px;
  }
}

/* Enhanced validation states */
.form-field input:invalid:not(:focus):not(:placeholder-shown),
.form-field select:invalid:not(:focus),
.form-field textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #e74c3c;
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.form-field input:valid:not(:focus),
.form-field select:valid:not(:focus),
.form-field textarea:valid:not(:focus) {
  border-color: #27ae60;
}

/* Loading state for select options */
.form-field select:disabled,
.form-field textarea:disabled {
  background-color: #f8f9fa;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Textarea specific styles */
.form-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

/* Custom focus ring for better accessibility */
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}


/* ========================================
   CUSTOM DROPDOWN FOR MOBILE-FRIENDLY SERVICE SELECTION
   ======================================== */

.custom-dropdown {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-dropdown.disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.custom-dropdown-selected {
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  background: white;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.custom-dropdown-selected:hover {
  border-color: #667eea;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.custom-dropdown.active .custom-dropdown-selected {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.custom-dropdown-selected .selected-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-dropdown-selected .dropdown-arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
  color: #667eea;
  flex-shrink: 0;
}

.custom-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.custom-dropdown-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #667eea;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  max-height: 400px;
  overflow: hidden;
  animation: dropdownSlideDown 0.3s ease;
}

.custom-dropdown.active .custom-dropdown-options {
  display: flex;
  flex-direction: column;
}

@keyframes dropdownSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-dropdown-search {
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  background: #f8f9fa;
}

.custom-dropdown-search input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.custom-dropdown-search input:focus {
  border-color: #667eea;
}

.custom-dropdown-search i {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}

.custom-dropdown-list {
  overflow-y: auto;
  max-height: 340px;
  scrollbar-width: thin;
  scrollbar-color: #667eea #f1f1f1;
}

.custom-dropdown-list::-webkit-scrollbar {
  width: 8px;
}

.custom-dropdown-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.custom-dropdown-list::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 4px;
}

.custom-dropdown-list::-webkit-scrollbar-thumb:hover {
  background: #764ba2;
}

.custom-dropdown-option {
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #2c3e50;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
}

.custom-dropdown-option:last-child {
  border-bottom: none;
}

.custom-dropdown-option:hover {
  background: linear-gradient(90deg, #f8f9ff, #ffffff);
  color: #667eea;
  padding-left: 25px;
}

.custom-dropdown-option.selected {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-weight: 600;
}

.custom-dropdown-option.selected:hover {
  background: linear-gradient(135deg, #764ba2, #667eea);
  padding-left: 20px;
}

.custom-dropdown-option.hidden {
  display: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .custom-dropdown-options {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 70vh;
    border-radius: 16px 16px 0 0;
    animation: dropdownSlideUp 0.3s ease;
  }

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

  .custom-dropdown-list {
    max-height: calc(70vh - 60px);
  }

  .custom-dropdown-selected {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .custom-dropdown-option {
    padding: 15px 20px;
    font-size: 1rem;
    border-bottom: 1px solid #e9ecef;
  }

  .custom-dropdown-option:hover {
    padding-left: 20px;
  }

  /* Add backdrop for mobile */
  .custom-dropdown.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

@media (max-width: 480px) {
  .custom-dropdown-selected {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .custom-dropdown-search {
    padding: 10px;
  }

  .custom-dropdown-search input {
    padding: 8px 35px 8px 12px;
    font-size: 0.9rem;
  }

  .custom-dropdown-option {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
}

/* Disabled state */
.custom-dropdown.disabled .custom-dropdown-selected {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}
