/* Custom Styles - Özgün & Profesyonel Tasarım Dili */

:root {
  /* Renk paleti: derin lacivert + sıcak krem + vurgu */
  --color-navy: #0c1929;
  --color-navy-light: #132f4c;
  --color-ink: #1c1917;
  --color-ink-muted: #57534e;
  --color-ink-subtle: #78716c;
  --color-cream: #faf8f5;
  --color-cream-warm: #f5f2ed;
  --color-paper: #ffffff;
  --color-border: #e7e5e4;
  --color-border-soft: #f0eeeb;
  /* Vurgu: teal (deniz) + altın (lüks) */
  --color-accent: #0d9488;
  --color-accent-hover: #0f766e;
  --color-gold: #b45309;
  --color-gold-soft: #d97706;
  /* Eski uyumluluk */
  --primary-color: var(--color-navy-light);
  --secondary-color: var(--color-accent);
  --accent-color: var(--color-accent);
  --dark-color: var(--color-ink);
  --light-color: var(--color-cream);
  --border-color: var(--color-border);
  /* Gölgeler: yumuşak, derinlik */
  --shadow-xs: 0 1px 2px rgba(12, 25, 41, 0.04);
  --shadow-sm: 0 2px 8px rgba(12, 25, 41, 0.06);
  --shadow-md: 0 4px 16px rgba(12, 25, 41, 0.08);
  --shadow-lg: 0 8px 32px rgba(12, 25, 41, 0.1);
  --shadow-xl: 0 16px 48px rgba(12, 25, 41, 0.12);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--color-ink);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

/* Tipografi: başlıklar için serif (luxury) */
.font-display {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
}

h1, h2, h3, .heading-display {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

/* Bölüm etiketleri: küçük harf, tracking */
.section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Button Styles */
.btn-primary {
  background: var(--color-navy);
  color: white;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary:hover {
  background: var(--color-navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-paper);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-navy);
  border: 1px solid var(--color-border);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--color-navy);
  color: white;
  border-color: var(--color-navy);
}

/* Featured Yachts - Tüm yatlar butonu */
.featured-all-yachts-btn {
  position: relative;
  box-shadow: var(--shadow-xs);
}
.featured-all-yachts-btn:hover {
  box-shadow: var(--shadow-md);
}
.featured-all-yachts-btn__accent {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  min-height: 16px;
  background: var(--color-accent);
  border-radius: 0 2px 2px 0;
  transition: background 0.2s ease, height 0.2s ease;
}
.featured-all-yachts-btn:hover .featured-all-yachts-btn__accent {
  background: rgba(255, 255, 255, 0.9);
  height: 70%;
}

/* Section Spacing */
.section-padding {
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
}

/* Card Styles */
.yacht-card {
  transition: all 0.2s ease;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.yacht-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
  background: var(--color-paper);
}

.yacht-card img {
  transition: transform 0.3s ease;
}

.yacht-card:hover img {
  transform: scale(1.02);
}

/* Modern Yacht Card */
.yacht-card-modern {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.yacht-card-modern:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 148, 136, 0.25);
}

/* Route Cards */
.route-card {
  transition: all 0.3s ease;
}

.route-card:hover {
  transform: translateY(-4px);
}

.route-card-large {
  transition: all 0.3s ease;
}

.route-card-large:hover {
  transform: translateY(-4px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /*overflow: hidden;*/
  width: 100%;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.video-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Fallback background image (used when video is not available) */
.video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  display: none;
}

/* Show fallback if video fails or on mobile */
.video-fallback.show {
  display: block;
}

.video-element.hide {
  display: none;
}

/* Show fallback on mobile, hide video */
@media (max-width: 768px) {
  .video-element {
    display: none;
  }
  
  .video-fallback {
    display: block;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Filter Panel */
.filter-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Search Bar - Viravira.co Style */
.hero-content .bg-white {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-content input[type="date"],
.hero-content select {
  background: white;
  transition: all 0.2s ease;
}

.hero-content input[type="date"]:focus,
.hero-content select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-popular {
  background: #fbbf24;
  color: #1e293b;
}

.badge-new {
  background: #10b981;
  color: white;
}

/* Modern Badge Styles */
.badge-modern {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.badge-popular-modern {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1e293b;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.badge-new-modern {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Testimonial Cards */
.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.95);
}

/* Modern Testimonial Card */
.testimonial-card-modern {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card-modern:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Testimonial Card v2 - özgün sol vurgu */
.testimonial-card-v2__accent {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 50%;
  min-height: 40px;
  background: var(--color-accent);
  border-radius: 0 2px 2px 0;
  transition: height 0.2s ease;
}
.testimonial-card-v2:hover .testimonial-card-v2__accent {
  height: 60%;
}

/* Limanlar sayfası - port kart sol vurgu */
.port-page-card__accent {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 40%;
  min-height: 32px;
  background: var(--color-accent);
  border-radius: 0 2px 2px 0;
  transition: height 0.2s ease;
}
.port-page-card:hover .port-page-card__accent {
  height: 55%;
}

/* Yatlar sayfası - filtre kartı (özgün) */
.yacht-filter-card {
  position: relative;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.yacht-filter-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}
.yacht-filter-card__accent {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 45%;
  min-height: 40px;
  background: var(--color-accent);
  border-radius: 0 3px 3px 0;
  transition: height 0.2s ease;
}
.yacht-filter-card:hover .yacht-filter-card__accent {
  height: 55%;
}

/* Yatlar sayfası - minimal filtre inputları */
.filter-input {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--color-ink);
  background-color: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.filter-input::placeholder {
  color: var(--color-ink-subtle);
}
.filter-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.12);
}
.filter-input:hover:not(:focus) {
  border-color: var(--color-ink-subtle);
}
#filter-advanced-btn.is-open .filter-advanced-chevron {
  transform: rotate(180deg);
}

/* Yatlar sayfası - yat kart sol vurgu */
.yacht-listing-card {
  position: relative;
}
.yacht-listing-card__accent {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 35%;
  min-height: 28px;
  background: var(--color-accent);
  border-radius: 0 2px 2px 0;
  transition: height 0.2s ease;
  z-index: 1;
}
.yacht-listing-card:hover .yacht-listing-card__accent {
  height: 50%;
}

/* Yatlar sayfası - grid kart (sol filtre + grid görünüm) */
.yacht-grid-card:hover {
  transform: translateY(-2px);
}

/* Yatlar — yatlar.html UX yardımcıları */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.page-yatlar-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--color-border);
  background: var(--color-cream);
  color: var(--color-ink-muted);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.page-yatlar-chip:hover {
  border-color: rgba(13, 148, 136, 0.35);
  color: var(--color-accent);
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.page-yatlar-chip--active {
  border-color: var(--color-accent);
  background: rgba(13, 148, 136, 0.08);
  color: var(--color-accent-hover);
}
.yacht-listing-card-media {
  aspect-ratio: 16 / 10;
}
@media (min-width: 640px) {
  .yacht-listing-card-media {
    aspect-ratio: 4 / 3;
  }
}

/* Yatlar — Flatpickr görünür alan (alt input) */
.yatlar-flatpickr-alt-input {
  width: 100%;
  cursor: pointer;
  background-color: var(--color-paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2378716c'%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-repeat: no-repeat;
  background-position: 0.65rem 50%;
  background-size: 1rem 1rem;
  padding-left: 2.35rem;
  padding-right: 0.75rem;
}
/* Mobil çekmece üstünde takvim */
.flatpickr-calendar {
  z-index: 70;
}

/* Yatlar — kapasite slider */
.yatlar-filter-range {
  height: 0.45rem;
  border-radius: 9999px;
  appearance: none;
  background: var(--color-border);
  accent-color: var(--color-accent);
}
.yatlar-filter-range::-webkit-slider-thumb {
  appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: var(--color-paper);
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  margin-top: -0.35rem;
}
.yatlar-filter-range::-moz-range-thumb {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: var(--color-paper);
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.yatlar-filter-range::-moz-range-track {
  height: 0.45rem;
  border-radius: 9999px;
  background: var(--color-border);
}
.filter-input--price {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.filter-input--select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2378716c'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 0.875rem;
  padding-right: 2rem;
  appearance: none;
}

/* Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
}

/* Yacht Category Cards */
.yacht-category-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  text-decoration: none;
  display: block;
}

.yacht-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

/* Modern Yacht Category Card */
.yacht-category-modern {
  background: transparent;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.yacht-category-modern:hover {
  transform: translateY(-2px);
}

/* Campaign Card */
.campaign-card {
  position: relative;
  overflow: hidden;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--primary-color);
  color: white;
  font-size: 1.5rem;
}

/* Statistics Section */
.stats-section {
  background: var(--primary-color);
  position: relative;
}

.stat-item {
  position: relative;
  z-index: 1;
}

/* Header Styles */
.header-glass {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header-glass.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-glass.scrolled nav a,
.header-glass.scrolled nav button,
.header-glass.scrolled nav .text-white {
  color: #1e293b !important;
}

.header-glass.scrolled nav .text-white:hover {
  color: #3b82f6 !important;
}

.header-glass.scrolled nav .bg-white {
  background: #3b82f6 !important;
  color: white !important;
}

.header-glass nav {
  padding: 0.75rem 0;
}

/* Section Titles */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Gallery Lightbox */
.gallery-item {
  cursor: pointer;
  transition: opacity 0.2s ease;
  border-radius: 0.5rem;
  overflow: hidden;
}

.gallery-item:hover {
  opacity: 0.9;
}

/* Reservation Steps */
.reservation-step {
  position: relative;
}

.reservation-step.active::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-color);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Global Font Sizes - Links, Inputs, Buttons */
a, button, input, select, textarea {
  font-size: 14px;
}

/* Transparent Search Bar Styles */
#search-form select option {
  background: white;
  color: #1e293b;
}

#search-form input::placeholder {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 500;
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.flatpickr-day.inRange {
  background: rgba(30, 64, 175, 0.1);
  border-color: rgba(30, 64, 175, 0.1);
}

.flatpickr-day:hover {
  background: rgba(30, 64, 175, 0.2);
}

.flatpickr-day.today {
  border-color: var(--primary-color);
}

.flatpickr-day.today:hover {
  background: var(--primary-color);
  color: white;
}

/* Yat detay — rezervasyon takvimi: bugün vurgulu, seçilemez (minDate yarın) */
.yacht-booking-flatpickr-cal .flatpickr-day.flatpickr-day--yacht-today {
  border: 2px solid #d97706;
  background: #fffbeb;
  color: #78350f;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.35);
}
.yacht-booking-flatpickr-cal .flatpickr-day.flatpickr-day--yacht-today.flatpickr-disabled,
.yacht-booking-flatpickr-cal .flatpickr-day.flatpickr-day--yacht-today.flatpickr-disabled:hover {
  border-color: #d97706;
  background: #fffbeb;
  color: #92400e;
  cursor: not-allowed;
  opacity: 1;
}
.yacht-booking-flatpickr-cal .flatpickr-day.flatpickr-day--yacht-today.flatpickr-disabled:hover {
  background: #fef3c7;
}

/* Apple-style Modal Options */
.apple-option {
  background: #f5f5f7;
  color: #1d1d1f;
  border: none;
  cursor: pointer;
}

.apple-option:hover {
  background: #e8e8ed;
}

.apple-option:active {
  background: #d1d1d6;
  transform: scale(0.98);
}

.apple-option-selected {
  background: #e3f2fd;
  color: #1d1d1f;
  border: none;
  cursor: pointer;
}

.apple-option-selected:hover {
  background: #bbdefb;
}

.apple-option-selected:active {
  background: #90caf9;
  transform: scale(0.98);
}

/* Apple-style Buttons */
.apple-button-primary {
  background: #007AFF;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.apple-button-primary:hover {
  background: #0051D5;
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
  transform: translateY(-1px);
}

.apple-button-primary:active {
  background: #0040AA;
  transform: translateY(0) scale(0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.apple-button-secondary {
  background: white;
  color: #007AFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.apple-button-secondary:hover {
  background: #f5f5f7;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.apple-button-secondary:active {
  background: #e8e8ed;
  transform: translateY(0) scale(0.98);
}

.apple-button-secondary-mobile {
  background: white;
  color: #007AFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.apple-button-secondary-mobile:active {
  background: #f5f5f7;
  transform: scale(0.98);
}

.apple-button-white {
  background: white;
  color: #1d1d1f;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.apple-button-white:hover {
  background: #f5f5f7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.apple-button-white:active {
  background: #e8e8ed;
  transform: translateY(0) scale(0.98);
}

.apple-button-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.apple-button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-1px);
}

.apple-button-outline:active {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(0) scale(0.98);
}

.apple-button-text {
  color: #007AFF;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.apple-button-text:hover {
  color: #0051D5;
  text-decoration: none;
}

.apple-button-text:active {
  color: #0040AA;
  transform: scale(0.98);
}

.apple-button-hero {
  background: rgba(0, 122, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

.apple-button-hero:hover {
  background: rgba(0, 81, 213, 0.95);
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.4);
  transform: translateY(-1px);
}

.apple-button-hero:active {
  background: rgba(0, 64, 170, 1);
  transform: translateY(0) scale(0.98);
  box-shadow: 0 1px 4px rgba(0, 122, 255, 0.3);
}

/* Apple-style Modal */
#lang-currency-modal {
  animation: fadeIn 0.2s ease-out;
}

#lang-currency-modal > div {
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 100vh;
  }
  
  /* Mobile Search Bar Improvements */
  #search-form {
    padding: 0;
  }
  
  #search-form input,
  #search-form button {
    min-height: 52px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  #search-form input::placeholder {
    font-size: 16px;
  }
  
  /* Better spacing on mobile */
  #search-form {
    gap: 12px !important;
  }
}
