/* ============================================
   BodyFit Health Club - Premium Dark Theme
   Modern Fitness Platform Styling
   ============================================ */

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Dark Premium Color Palette */
  --primary-bg: #0a0e27;
  --secondary-bg: #141b3c;
  --card-bg: #1a2142;
  --gradient-cyan: #00d4ff;
  --gradient-purple: #a855f7;
  --gradient-green: #10ff6f;
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --text-muted: #8892a6;
  --border-color: #2a3354;
  --success-color: #10ff6f;
  --error-color: #ff4757;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--gradient-cyan) 0%, var(--gradient-purple) 100%);
  --gradient-success: linear-gradient(135deg, var(--gradient-green) 0%, var(--gradient-cyan) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav {
  background-color: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-primary);
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
}

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

.logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gradient-cyan);
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  background: var(--gradient-overlay);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(30px);
  }
}

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

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.hero-image {
  margin-top: 3rem;
}

.hero-illustration {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.illustration-emoji {
  font-size: 4rem;
  animation: bounce 2s ease-in-out infinite;
}

.illustration-emoji:nth-child(2) {
  animation-delay: 0.2s;
}

.illustration-emoji:nth-child(3) {
  animation-delay: 0.4s;
}

.illustration-emoji:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gradient-cyan);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
  display: block;
}

.btn-service {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gradient-cyan);
  border: 2px solid var(--border-color);
}

.btn-service:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--gradient-cyan);
}

.btn-fixed {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  max-width: 500px;
  width: calc(100% - 40px);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  background-color: var(--secondary-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gradient-cyan);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
}

.rating-value {
  font-weight: 600;
  color: var(--text-secondary);
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.currency {
  font-size: 1rem;
  color: var(--text-muted);
}

.amount {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Why Choose Us Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gradient-purple);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--secondary-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--text-primary);
  font-size: 1.125rem;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gradient-cyan);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gradient-cyan);
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* CTA Section */
.cta {
  background: var(--gradient-primary);
  padding: 80px 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-bg);
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--primary-bg);
  opacity: 0.9;
}

.cta .btn-primary {
  background-color: var(--primary-bg);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
  background-color: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gradient-cyan);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--gradient-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

.footer-notice {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Service Detail Page */
.service-detail {
  padding: 40px 0 120px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--gradient-cyan);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.back-link:hover {
  transform: translateX(-5px);
}

.service-header {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.service-icon-large {
  font-size: 5rem;
}

.service-info {
  flex: 1;
}

.service-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.service-meta {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.service-rating-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-count {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-price-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.price-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-weight: 700;
}

.price-amount .currency {
  font-size: 1.125rem;
}

.price-amount .amount {
  font-size: 2.5rem;
}

.service-content {
  max-width: 900px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 3rem;
}

.content-heading {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gradient-cyan);
}

.content-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.125rem;
}

.content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 1rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.list-icon {
  font-size: 1.25rem;
  color: var(--gradient-green);
  flex-shrink: 0;
}

.service-cta-bottom {
  padding-bottom: 100px;
}

/* Booking Page */
.booking-section {
  padding: 40px 0 120px;
  min-height: 100vh;
}

.booking-container {
  max-width: 600px;
  margin: 0 auto;
}

.booking-header {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.booking-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.booking-service-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.booking-service-info .service-icon {
  font-size: 2.5rem;
}

.booking-service-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.booking-price {
  color: var(--gradient-cyan);
  font-size: 1.125rem;
  font-weight: 600;
}

.booking-form {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.required {
  color: var(--error-color);
}

.optional {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.9rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--secondary-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gradient-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--error-color);
}

.form-error {
  display: block;
  color: var(--error-color);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.booking-notice {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.booking-notice p {
  margin-bottom: 0.5rem;
}

/* Confirmation Page */
.confirmation-section {
  padding: 60px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.confirmation-card {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
}

.confirmation-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: var(--gradient-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-bg);
  font-weight: 700;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.confirmation-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.confirmation-message {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.confirmation-details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.details-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-muted);
  font-weight: 600;
}

.detail-value {
  color: var(--text-primary);
  font-weight: 500;
  text-align: right;
  max-width: 60%;
}

.confirmation-next-steps {
  text-align: left;
  margin-bottom: 2rem;
}

.next-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.next-steps-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.confirmation-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Privacy & Contact Pages */
.privacy-section,
.contact-section {
  padding: 40px 0 80px;
  min-height: 80vh;
}

.privacy-content,
.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 0.9rem;
}

.privacy-text {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
}

.privacy-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gradient-cyan);
}

.privacy-text h2:first-child {
  margin-top: 0;
}

.privacy-text h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gradient-purple);
}

.privacy-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-text ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.privacy-text li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.privacy-text a {
  color: var(--gradient-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-text a:hover {
  color: var(--gradient-purple);
}

/* Contact Page */
.contact-intro {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.contact-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-email {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gradient-cyan);
  text-decoration: none;
  padding: 1rem 2rem;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid var(--gradient-cyan);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-email:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

.contact-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.info-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.info-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.support-notes {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
}

.support-notes h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.support-notes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-notes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.support-notes li::before {
  content: '→';
  color: var(--gradient-cyan);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.support-notes a {
  color: var(--gradient-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.support-notes a:hover {
  color: var(--gradient-purple);
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .services-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .service-header {
    flex-direction: column;
    text-align: center;
  }

  .service-meta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

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

  .nav-links {
    display: none;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .page-title {
    font-size: 2rem;
  }

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

  .confirmation-title {
    font-size: 2rem;
  }

  .privacy-text {
    padding: 2rem 1.5rem;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-email {
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .service-icon-large {
    font-size: 3.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .illustration-emoji {
    font-size: 3rem;
  }

  .confirmation-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .btn-fixed {
    bottom: 10px;
    width: calc(100% - 20px);
  }
}

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

/* Selection */
::selection {
  background-color: var(--gradient-cyan);
  color: var(--primary-bg);
}
