/* Updated: 2025-11-04 - Cursive italic font for badge title */
.badge-title {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.15rem);
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  color: var(--brand-white);
  font-style: italic;
}

/* Outline gold button (hero) refinements */
.btn-outline-gold {
  border-radius: 12px;
  padding: 12px 22px;
}
/* =============================================
   TIMESHARE HELP CENTER - COMPONENT STYLES
   Special Effects, Animations, and Components
   ============================================= */

/* =============================================
   GOLD SHIMMER TEXT EFFECT
   ============================================= */
.gold-text {
  background: linear-gradient(
    135deg,
    #FFF6A9 0%,
    #FFE259 20%,
    #FFD700 40%,
    #E6B800 60%,
    #FFDB58 80%,
    #FFF6A9 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
  transition: all 0.4s ease-in-out;
}

.gold-hover {
  background: linear-gradient(
    135deg,
    #FFF6A9 0%,
    #FFE259 20%,
    #FFD700 40%,
    #E6B800 60%,
    #FFDB58 80%,
    #FFF6A9 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease-in-out;
}

.gold-hover:hover {
  animation: shimmer 3s linear infinite;
}

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

/* =============================================
   AWARDS SECTION - STATIC GRID
   ============================================= */

.awards-section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
  border-top: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
  padding: 2rem 0;
}

.awards-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem 0;
  color: #d4af37;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.award-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.award-item:hover {
  transform: scale(1.05);
}

.award-logo {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Desktop */
@media (min-width: 768px) {
  .awards-section {
    padding: 4rem 0;
    border-top: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
  }
  
  .awards-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
  }
  
  .awards-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    max-width: 1200px;
  }
  
  .award-logo {
    max-height: 150px;
  }
  
  .award-item:hover {
    transform: scale(1.1);
  }
}

/* =============================================
   BADGE COMPONENT
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--brand-gold);
  margin-bottom: var(--spacing-md);
}

.badge.is-primary {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
}

/* Neon badge variant (glowing outline) */
.badge-neon {
  position: relative;
  border: 1.5px solid #3aac6b;
  box-shadow: 0 2px 56px 6px #3aac6b69;
}

.badge-neon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(58,172,107,0.25), rgba(58,172,107,0) 70%);
  filter: blur(8px);
  z-index: -1;
}

@media (max-width: 768px) {
  .badge-title {
    font-size: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

/* Decorative dots (for hero corners) */
.decor-dots {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, 10px);
  gap: 8px 10px;
  opacity: 0.7;
}

.decor-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  border: 2px solid var(--brand-gold);
  background: transparent;
}

/* =============================================
   IMAGE HOVER SCALE + ZOOM
   ============================================= */
.image-hover-scale {
  transition: transform 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.image-hover-scale:hover {
  transform: scale(1.05);
}

.image-hover-scale.fullscreen {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 90vw;
  max-height: 90vh;
  transform: translate(-50%, -50%) scale(1);
  z-index: 10001;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.image-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  backdrop-filter: blur(4px);
  cursor: pointer;
}

/* =============================================
   BULLET POINTS / CHECKLIST
   ============================================= */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.bullet-point {
  position: relative;
  padding-left: 2rem;
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.bullet-point::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-gold);
  font-weight: bold;
  font-size: 1.2em;
}

/* =============================================
   STATS / NUMBERS SECTION
   ============================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.stat-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.stat-number {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: var(--text-base);
  color: var(--gray-600);
}

/* =============================================
   TESTIMONIAL CARDS
   ============================================= */
.testimonial {
  background: var(--brand-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: var(--brand-gold);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.testimonial-title {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

/* =============================================
   PROCESS STEPS / TIMELINE
   ============================================= */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin: var(--spacing-xl) 0;
  position: relative;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-gold), #FFB700);
  color: var(--brand-white);
  font-size: var(--text-2xl);
  font-weight: 800;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
}

.step-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--gray-900);
}

.step-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Connecting lines for desktop */
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 30px;
    right: -20%;
    font-size: 2rem;
    color: var(--brand-gold);
    opacity: 0.5;
  }
}

/* =============================================
   CALL-TO-ACTION SECTIONS
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--brand-white);
  padding: var(--spacing-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, var(--brand-gold-medium) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--brand-white);
  margin-bottom: var(--spacing-md);
}

.cta-section p {
  font-size: var(--text-lg);
  color: var(--gray-200);
  margin-bottom: var(--spacing-xl);
}

/* =============================================
   MODAL/DIALOG
   ============================================= */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--brand-white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--brand-gold);
  color: var(--brand-white);
}

/* =============================================
   TABS COMPONENT
   ============================================= */
.tabs {
  width: 100%;
}

.tab-list {
  display: flex;
  gap: var(--spacing-xs);
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: var(--spacing-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-button {
  padding: var(--spacing-sm) var(--spacing-md);
  font-weight: 600;
  color: var(--gray-600);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.tab-button:hover {
  color: var(--brand-gold);
}

.tab-button.active {
  color: var(--brand-gold);
  border-bottom-color: var(--brand-gold);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.tab-panel.active {
  display: block;
}

/* =============================================
   PROGRESS BAR
   ============================================= */
.progress {
  width: 100%;
  height: 8px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-gold), #FFB700);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

/* =============================================
   ALERTS / NOTIFICATIONS
   ============================================= */
.alert {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border-left: 4px solid #10b981;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

.alert-warning {
  background: #fef3c7;
  color: #92400e;
  border-left: 4px solid #f59e0b;
}

.alert-info {
  background: #dbeafe;
  color: #1e40af;
  border-left: 4px solid #3b82f6;
}

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

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

.skeleton-text {
  height: 1em;
  margin-bottom: 0.5em;
}

.skeleton-heading {
  height: 2em;
  margin-bottom: 1em;
}

.skeleton-card {
  height: 200px;
}

/* =============================================
   RESPONSIVE UTILITIES
   ============================================= */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* =============================================
   SCROLL TO TOP BUTTON
   ============================================= */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--brand-gold);
  color: var(--brand-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 9998;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--gray-900);
  transform: translateY(-4px);
}

/* =============================================
   DECORATIVE GRADIENTS
   ============================================= */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

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

/* =============================================
   TEAM SECTION - ABOUT US PAGE
   ============================================= */
.team-section {
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.95);
}

.team-department {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.department-title {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  font-weight: 700;
  text-align: left;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--brand-gold);
  letter-spacing: 0.02em;
}

.team-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
  gap: 1.5rem !important;
  margin-bottom: 2rem;
  width: 100%;
}

@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 2rem !important;
  }
}

.team-member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  padding-bottom: 0.5rem;
}

.team-member-card:hover {
  transform: translateY(-5px);
}

.team-member-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-member-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-member-card:hover .team-member-image-placeholder {
  border-color: rgba(212, 175, 55, 0.6);
}

.team-member-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.team-member-link {
  text-decoration: none;
  cursor: pointer;
}

.team-member-link:hover {
  text-decoration: none;
}

.team-member-link .team-member-name,
.team-member-link .team-member-title {
  transition: opacity 0.3s ease;
}

.team-member-link:hover .team-member-name,
.team-member-link:hover .team-member-title {
  opacity: 0.8;
}

.team-member-name {
  font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-height: 3em;
  padding: 0.25rem 0.5rem;
}

.team-member-title {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: rgba(212, 175, 55, 0.9);
  margin: 0;
  font-weight: 400;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.95);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.location-info {
  margin-bottom: 2rem;
}

.location-address {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 1rem 0;
}

.map-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.map-link:hover {
  opacity: 0.8;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.8);
}

.form-field input::placeholder {
  color: #ffffff !important;
  opacity: 1 !important;
}

.form-field input::-webkit-input-placeholder {
  color: #ffffff !important;
  opacity: 1 !important;
}

.form-field input::-moz-placeholder {
  color: #ffffff !important;
  opacity: 1 !important;
}

.consent-field {
  margin-bottom: 1.5rem;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.consent-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

@media (min-width: 1024px) {
  .map-container {
    min-height: 600px;
  }
}

/* Why Choose Section */
.why-choose-section {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.98);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
}

.feature-icon {
  margin: 0 auto 1.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--brand-gold);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-icon-wrapper {
  margin: 0 auto 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--brand-gold);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.feature-icon-svg {
  color: var(--brand-gold);
  stroke: var(--brand-gold);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* =============================================
   EXIT SERVICES PAGE - PROCESS CARDS WITH HOVER
   ============================================= */
.exit-process-section .process-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.exit-process-section .process-card:hover {
  border-color: rgba(212, 175, 55, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.exit-process-section .process-icon {
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.exit-process-section .process-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.exit-process-section .process-card-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  margin-top: 0;
}

.exit-process-section .process-card:hover .process-card-content,
.exit-process-section .process-card.active .process-card-content {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
}

.exit-process-section .process-card:hover h3,
.exit-process-section .process-card.active h3 {
  font-style: italic;
  color: var(--brand-gold);
}

.exit-process-section .process-card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Timeline Section - Clean Diagonal Layout Like Live Site */
.timeline-section {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.95);
  position: relative;
}

.timeline-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  min-height: 450px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-gold) 10%, var(--brand-gold) 90%, transparent 100%);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-zigzag {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 5%;
  flex-wrap: wrap;
}

.timeline-step {
  flex: 0 0 calc(25% - 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-step.timeline-top {
  margin-bottom: 3rem;
}

.timeline-step.timeline-bottom {
  margin-top: 3rem;
}

.timeline-step.locked {
  opacity: 0.5;
  pointer-events: none;
}

.timeline-step.locked .timeline-dot {
  background: rgba(100, 100, 100, 0.5);
  border-color: rgba(150, 150, 150, 0.5);
}

.timeline-step:not(.locked) .timeline-dot {
  animation: pulse 2s infinite;
}

.timeline-step.clicked .timeline-dot {
  animation: none;
  background: var(--brand-gold);
  transform: scale(1.2);
}

.timeline-step.clicked .timeline-dot .step-number {
  color: rgba(0, 0, 0, 0.9);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.8); }
}

.timeline-content {
  text-align: center;
  min-height: 60px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #d4af37;
  border-radius: 8px;
  position: relative;
  margin-bottom: 4rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.timeline-content span {
  display: inline-block;
  line-height: 1.5;
}

/* Vertical connector upward for TOP steps */
.timeline-step.timeline-top::before {
  content: '';
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 3rem;
  background: var(--brand-gold);
  z-index: 0;
}

.timeline-content-bottom {
  text-align: center;
  min-height: 60px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #d4af37;
  border-radius: 8px;
  position: relative;
  margin-top: 4rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.timeline-content-bottom span {
  display: inline-block;
  line-height: 1.5;
}

/* Vertical connector downward for BOTTOM steps */
.timeline-step.timeline-bottom::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 3rem;
  background: var(--brand-gold);
  z-index: 0;
}

.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.9);
  border: 3px solid var(--brand-gold);
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot .step-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-gold);
  z-index: 6;
}

.timeline-dot:hover {
  background: var(--brand-gold);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.timeline-dot:hover .step-number {
  color: rgba(0, 0, 0, 0.9);
}

/* Show text on hover or when step is active */
.timeline-step:hover .timeline-content,
.timeline-step.active .timeline-content,
.timeline-content:hover {
  opacity: 1 !important;
  visibility: visible !important;
}

.timeline-step:hover .timeline-content-bottom,
.timeline-step.active .timeline-content-bottom,
.timeline-content-bottom:hover {
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 1024px) {
  .timeline-container {
    padding: 3rem 1rem;
    min-height: 350px;
  }
  
  .timeline-content,
  .timeline-content-bottom {
    font-size: 0.75rem;
  }
}

@media (max-width: 767px) {
  .timeline-section {
    padding: 2rem 0;
  }
  
  .timeline-container {
    padding: 1.5rem 1rem;
    min-height: auto;
  }
  
  .timeline-zigzag {
    flex-direction: column;
    gap: 1.25rem;
    padding: 0;
    align-items: stretch;
  }
  
  .timeline-line {
    display: none;
  }
  
  /* Simple card-based layout for mobile */
  .timeline-step {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 !important;
    flex-direction: column !important;
    align-items: stretch;
    gap: 0;
    order: 0;
    pointer-events: auto !important;
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    padding: 1.25rem;
    transition: all 0.3s ease;
  }
  
  .timeline-step.locked {
    opacity: 0.7 !important;
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(150, 150, 150, 0.3);
  }
  
  /* All steps same layout */
  .timeline-step.timeline-top,
  .timeline-step.timeline-bottom {
    flex-direction: column !important;
  }
  
  /* Hide vertical connectors */
  .timeline-step::before {
    display: none;
  }
  
  /* Hide the separate dots */
  .timeline-dot {
    display: none !important;
  }
  
  /* Content fills the card */
  .timeline-content,
  .timeline-content-bottom {
    max-width: 100%;
    min-height: auto;
    font-size: 0.9rem;
    margin: 0;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0;
    flex: 1;
    order: 1;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  
  /* Step label styling */
  .timeline-content div:first-child,
  .timeline-content-bottom div:first-child {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  /* Main text */
  .timeline-content span,
  .timeline-content-bottom span {
    font-size: 0.95rem !important;
    line-height: 1.5;
    display: block;
    color: #d4af37 !important;
  }
  
  .timeline-step.locked .timeline-content span,
  .timeline-step.locked .timeline-content-bottom span {
    color: rgba(212, 175, 55, 0.6) !important;
  }
}
