/* ============================================
   ADDA TOURS - Premium UI Components
   ============================================ */

/* === Buttons === */
.adda-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-elegant);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

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

.adda-btn:hover::before {
  left: 100%;
}

/* Primary Gold Button */
.adda-btn--primary {
  background: var(--gold-primary);
  color: var(--white);
  border-color: var(--gold-primary);
}

.adda-btn--primary:hover {
  background: var(--gold-gradient-hover);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Outline Gold Button */
.adda-btn--outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.adda-btn--outline:hover {
  background: var(--gold-primary);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* White Outline Button */
.adda-btn--white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.adda-btn--white:hover {
  background: var(--white);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

/* White Fill Button */
.adda-btn--white-fill {
  background: var(--white);
  color: var(--gold-primary);
  border-color: var(--white);
}

.adda-btn--white-fill:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Dark Button */
.adda-btn--dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.adda-btn--dark:hover {
  background: var(--charcoal-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Button Sizes */
.adda-btn--lg {
  padding: 18px 42px;
  font-size: var(--fs-body);
}

.adda-btn--sm {
  padding: 10px 22px;
  font-size: var(--fs-tiny);
}

.adda-btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* === Cards === */
.adda-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-elegant);
  position: relative;
}

.adda-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.adda-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.adda-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.adda-card:hover .adda-card__image img {
  transform: scale(1.08);
}

.adda-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.adda-card:hover .adda-card__image-overlay {
  opacity: 1;
}

.adda-card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--gold-gradient);
  color: var(--white);
  padding: 6px 14px;
  font-size: var(--fs-tiny);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.adda-card__body {
  padding: var(--space-xl);
}

.adda-card__category {
  font-family: var(--font-accent);
  font-size: var(--fs-tiny);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-sm);
}

.adda-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.adda-card:hover .adda-card__title {
  color: var(--gold-primary);
}

.adda-card__description {
  font-size: var(--fs-small);
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.adda-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
}

.adda-card__price-amount {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--gold-primary);
}

.adda-card__price-period {
  font-size: var(--fs-small);
  color: var(--gray-500);
}

.adda-card__footer {
  padding: var(--space-md) var(--space-xl);
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-small);
  color: var(--gray-600);
}

.adda-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.adda-card__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.adda-card__meta-item i {
  color: var(--gold-primary);
  font-size: 14px;
}

/* === Gold Bordered Card Variant === */
.adda-card--gold-border {
  border: 1px solid var(--gold-lightest);
}

.adda-card--gold-border:hover {
  border-color: var(--gold-primary);
}

/* === Service Card (Icon Card) === */
.adda-service-card {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-elegant);
  position: relative;
  overflow: hidden;
}

.adda-service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-elegant);
}

.adda-service-card:hover {
  border-color: var(--gold-lighter);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

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

.adda-service-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--gold-lightest);
  color: var(--gold-primary);
  font-size: 32px;
  transition: all var(--transition-elegant);
}

.adda-service-card:hover .adda-service-card__icon {
  background: var(--gold-gradient);
  color: var(--white);
  transform: scale(1.1);
}

.adda-service-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.adda-service-card__text {
  font-size: var(--fs-small);
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.adda-service-card__link {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--gold-primary);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: all var(--transition-fast);
}

.adda-service-card__link:hover {
  color: var(--gold-dark);
  gap: var(--space-sm);
}

/* === Feature Item === */
.adda-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
}

.adda-feature__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--gold-lightest);
  color: var(--gold-primary);
  font-size: 22px;
  transition: all var(--transition-elegant);
}

.adda-feature:hover .adda-feature__icon {
  background: var(--gold-primary);
  color: var(--white);
}

.adda-feature__content {
  flex: 1;
}

.adda-feature__title {
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-bold);
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.adda-feature__text {
  font-size: var(--fs-small);
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

/* === Forms === */
.adda-form-group {
  margin-bottom: var(--space-lg);
}

.adda-form-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  letter-spacing: var(--ls-wide);
}

.adda-form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.adda-form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(172,121,29,0.15);
}

.adda-form-control::placeholder {
  color: var(--gray-400);
}

select.adda-form-control {
  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='%23ac791d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* === Testimonial Card === */
.adda-testimonial {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  position: relative;
}

.adda-testimonial__quote {
  font-family: var(--font-accent);
  font-size: var(--fs-h4);
  font-style: italic;
  color: var(--gray-700);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
  position: relative;
}

.adda-testimonial__quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold-lighter);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.adda-testimonial__author {
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-bold);
  color: var(--charcoal);
}

.adda-testimonial__role {
  font-size: var(--fs-small);
  color: var(--gold-primary);
  margin-top: var(--space-xs);
}

/* === Gold Divider === */
.adda-gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  border: none;
}

.adda-gold-line--center {
  margin: var(--space-md) auto;
}

/* === Trust Badge === */
.adda-trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(172,121,29,0.2);
  border-radius: var(--radius-md);
}

.adda-trust-badge__icon {
  color: var(--gold-primary);
  font-size: 24px;
}

.adda-trust-badge__text {
  font-size: var(--fs-small);
  color: var(--gray-600);
}
