/* ============================================
   VERTEX WEALTH BEAUTY - GRADIENT MODERN STYLE
   CSS Reset & Base Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #ffffff 0%, #F8F3E8 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ============================================
   TYPOGRAPHY - GRADIENT MODERN
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C3E50;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2C3E50 0%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  background: linear-gradient(135deg, #2C3E50 0%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ============================================
   HEADER & NAVIGATION - GRADIENT MODERN
   ============================================ */

header {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,243,232,0.95) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2C3E50;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #B8860B, #2C3E50);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #B8860B;
}

.main-nav a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(184, 134, 11, 0.4);
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
}

/* ============================================
   MOBILE MENU - GRADIENT MODERN
   ============================================ */

.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  z-index: 2001;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.05);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  transform: translateX(8px);
}

/* ============================================
   BUTTONS - GRADIENT MODERN
   ============================================ */

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(184, 134, 11, 0.4);
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #2C3E50;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border: 2px solid #B8860B;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-link {
  color: #B8860B;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover {
  color: #D4AF37;
}

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

.btn-small {
  display: inline-block;
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

/* ============================================
   HERO SECTION - GRADIENT MODERN
   ============================================ */

.hero {
  background: linear-gradient(135deg, rgba(44,62,80,0.95) 0%, rgba(184,134,11,0.9) 100%);
  padding: 100px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(248,243,232,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 24px;
  color: #F8F3E8;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================
   SECTIONS - GRADIENT MODERN
   ============================================ */

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */

.introduction {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.introduction h2 {
  text-align: center;
  margin-bottom: 24px;
}

.introduction > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555;
}

.key-points {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.point img {
  width: 80px;
  height: 80px;
  padding: 20px;
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.1);
}

.point h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.trust-indicators span {
  color: #B8860B;
  font-weight: 600;
  font-size: 16px;
}

/* ============================================
   SERVICE CARDS - GRADIENT MODERN
   ============================================ */

.services-preview, .services-detailed {
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
  padding: 60px 20px;
}

.services-preview h2, .services-detailed h2 {
  text-align: center;
  margin-bottom: 16px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
  justify-content: center;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #B8860B 0%, #D4AF37 100%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.15);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #555;
  flex-grow: 1;
}

.service-card .benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.service-card .benefits li {
  padding-left: 24px;
  position: relative;
  color: #555;
  font-size: 15px;
}

.service-card .benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #B8860B;
  font-weight: bold;
}

.service-card .duration {
  font-size: 14px;
  color: #888;
  font-weight: 600;
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0;
}

.services-preview .btn-primary {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}

/* ============================================
   FEATURES GRID - GRADIENT MODERN
   ============================================ */

.features {
  padding: 60px 20px;
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature {
  background: white;
  border-radius: 16px;
  padding: 32px;
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.12);
}

.feature img {
  width: 70px;
  height: 70px;
  padding: 16px;
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
  border-radius: 50%;
  margin-bottom: 8px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.feature p {
  color: #666;
  font-size: 15px;
  margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS - GRADIENT MODERN
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184,134,11,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials h2 {
  text-align: center;
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 50px;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 32px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.3);
}

.testimonial-card p {
  color: #2C3E50;
  font-style: italic;
  line-height: 1.8;
  font-size: 16px;
}

.client-name {
  color: #B8860B;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
}

.stars {
  color: #B8860B;
  font-size: 18px;
  letter-spacing: 4px;
}

/* ============================================
   LOCATION INFO - GRADIENT MODERN
   ============================================ */

.location-info {
  background: white;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 60px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.location-info h2 {
  text-align: center;
  margin-bottom: 40px;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 30px;
}

.location-details > div {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
  border-radius: 12px;
}

.location-details h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #B8860B;
}

.location-details p {
  color: #555;
  line-height: 1.8;
}

.ambient-text {
  text-align: center;
  color: #666;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   CTA BANNER - GRADIENT MODERN
   ============================================ */

.cta-banner, .cta-section {
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2, .cta-section h2 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p, .cta-section p {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-buttons .btn-primary {
  background: white;
  color: #B8860B;
}

.cta-buttons .btn-primary:hover {
  background: #2C3E50;
  color: white;
}

.cta-buttons .btn-secondary {
  border-color: white;
  color: white;
}

.cta-buttons .btn-secondary:hover {
  background: white;
  color: #B8860B;
}

.contact-info {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  position: relative;
  z-index: 1;
}

/* ============================================
   PAGE HERO - GRADIENT MODERN
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, rgba(44,62,80,0.95) 0%, rgba(184,134,11,0.9) 100%);
  padding: 80px 20px 60px;
  margin-bottom: 60px;
  text-align: center;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.breadcrumb a {
  color: rgba(255,255,255,0.9);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb span {
  color: white;
  font-weight: 600;
}

.page-hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   PRICING TABLES - GRADIENT MODERN
   ============================================ */

.pricing-table {
  padding: 60px 20px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.price-item {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
  position: relative;
}

.price-item:hover {
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.15);
  transform: translateX(5px);
}

.price-item.popular {
  border: 2px solid #B8860B;
}

.price-item.popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #B8860B 0%, #D4AF37 100%);
}

.item-info {
  flex: 1;
  min-width: 250px;
}

.item-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.item-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
}

.item-price {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.price {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   PACKAGE CARDS - GRADIENT MODERN
   ============================================ */

.package-pricing {
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
  padding: 80px 20px;
}

.package-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.package-card {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  text-align: center;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.2);
}

.package-card.best-value {
  border: 3px solid #B8860B;
  transform: scale(1.05);
}

.package-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
}

.package-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.package-description {
  color: #666;
  font-size: 15px;
  margin-bottom: 16px;
}

.included {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin: 20px 0;
}

.included li {
  padding-left: 28px;
  position: relative;
  color: #555;
  font-size: 15px;
}

.included li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #B8860B;
  font-weight: bold;
  font-size: 18px;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
}

.package-price {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 8px 0;
}

.savings {
  color: #2C3E50;
  font-weight: 700;
  font-size: 16px;
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

/* ============================================
   CONTACT FORMS - GRADIENT MODERN
   ============================================ */

.form-container {
  max-width: 700px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 8px;
  font-size: 15px;
}

.input-field {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.input-field:focus {
  border-color: #B8860B;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-field input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-field label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.checkbox-field a {
  color: #B8860B;
  text-decoration: underline;
}

.form-note {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-top: 16px;
}

.form-container .btn-primary {
  width: 100%;
  margin-top: 8px;
}

/* ============================================
   GALLERY & TOURS - GRADIENT MODERN
   ============================================ */

.tour-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.area-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.15);
}

.area-card img {
  width: 80px;
  height: 80px;
  padding: 20px;
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
  border-radius: 50%;
  margin-bottom: 8px;
}

.area-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.area-card p {
  color: #666;
  font-size: 15px;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.15);
}

.feature-card img {
  width: 70px;
  height: 70px;
  padding: 16px;
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
  border-radius: 50%;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.feature-card p {
  color: #666;
  font-size: 15px;
}

/* ============================================
   ABOUT PAGE - GRADIENT MODERN
   ============================================ */

.story, .philosophy, .team, .values, .differentiators, .facility {
  padding: 60px 20px;
}

.story {
  background: white;
  border-radius: 20px;
  margin: 0 20px 60px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.philosophy {
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
}

.philosophy .subtitle {
  text-align: center;
  font-style: italic;
  color: #B8860B;
  font-size: 20px;
  margin-bottom: 40px;
}

.philosophy-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.pillar {
  background: white;
  border-radius: 12px;
  padding: 32px;
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(184, 134, 11, 0.12);
}

.pillar img {
  width: 70px;
  height: 70px;
  padding: 16px;
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
  border-radius: 50%;
}

.pillar h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.pillar p {
  color: #666;
  font-size: 15px;
  margin-bottom: 0;
}

.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.value-card {
  background: white;
  border-radius: 12px;
  padding: 28px;
  flex: 1;
  min-width: 200px;
  max-width: 220px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(184, 134, 11, 0.12);
}

.value-card img {
  width: 60px;
  height: 60px;
  padding: 14px;
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
  border-radius: 50%;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.value-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
}

.differentiator-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 0;
}

.differentiator-list .item {
  background: white;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 4px solid #B8860B;
  transition: all 0.3s ease;
}

.differentiator-list .item:hover {
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.15);
  transform: translateX(5px);
}

.differentiator-list h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #B8860B;
}

.differentiator-list p {
  color: #555;
  margin-bottom: 0;
}

/* ============================================
   CONTACT PAGE - GRADIENT MODERN
   ============================================ */

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.15);
}

.contact-card img {
  width: 70px;
  height: 70px;
  padding: 16px;
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
  border-radius: 50%;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-card p {
  color: #555;
  margin-bottom: 0;
  line-height: 1.8;
}

.contact-card .availability {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 40px 0;
}

.info-block {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

.info-block h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #B8860B;
}

.info-block p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.hours-table tr {
  border-bottom: 1px solid #f0f0f0;
}

.hours-table td {
  padding: 10px 0;
  color: #555;
}

.hours-table td:first-child {
  font-weight: 600;
  color: #2C3E50;
}

.hours-table td:last-child {
  text-align: right;
}

.note {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-top: 12px;
}

.directions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.direction-item {
  background: white;
  border-radius: 12px;
  padding: 32px;
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

.direction-item h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #B8860B;
}

.direction-item p {
  color: #555;
  line-height: 1.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.social-link {
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.newsletter-signup {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
}

.newsletter-signup h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}

.newsletter-form .input-field {
  flex: 1;
  min-width: 250px;
}

.privacy-note {
  font-size: 13px;
  color: #888;
}

.privacy-note a {
  color: #B8860B;
  text-decoration: underline;
}

/* ============================================
   THANK YOU PAGE - GRADIENT MODERN
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  color: white;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.3);
  animation: scaleIn 0.5s ease;
}

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

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 16px;
}

.confirmation {
  color: #888;
  font-size: 16px;
}

.next-steps {
  padding: 80px 20px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
}

.step {
  background: white;
  border-radius: 16px;
  padding: 32px;
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  color: white;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  color: #666;
  margin-bottom: 0;
}

.suggestion-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.suggestion-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.suggestion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.15);
}

.suggestion-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.suggestion-card p {
  color: #666;
  flex-grow: 1;
}

.special-offer {
  background: linear-gradient(135deg, #F8F3E8 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 0 20px;
}

.special-offer h2 {
  margin-bottom: 20px;
}

.special-offer p {
  max-width: 700px;
  margin: 0 auto 16px;
}

.terms {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

.contact-reminder {
  padding: 60px 20px;
  text-align: center;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.method {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
}

.method h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #B8860B;
}

.method p {
  color: #555;
  line-height: 1.8;
}

.return-navigation {
  text-align: center;
  padding: 60px 20px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ============================================
   LEGAL PAGES - GRADIENT MODERN
   ============================================ */

.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.content-wrapper h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: #2C3E50;
}

.content-wrapper h2:first-of-type {
  margin-top: 0;
}

.content-wrapper h3 {
  font-size: 22px;
  margin: 30px 0 16px;
  color: #B8860B;
}

.content-wrapper p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper ul {
  margin: 20px 0 20px 30px;
}

.content-wrapper li {
  list-style: disc;
  color: #555;
  line-height: 1.8;
  margin-bottom: 8px;
}

.content-wrapper a {
  color: #B8860B;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #D4AF37;
}

.last-updated, .effective-date {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-top: 8px;
}

/* ============================================
   FOOTER - GRADIENT MODERN
   ============================================ */

footer {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #B8860B;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.footer-contact, .footer-links, .footer-legal {
  flex: 1;
  min-width: 200px;
}

.footer-content h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #B8860B;
}

.footer-contact p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-links, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a, .footer-legal a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover, .footer-legal a:hover {
  color: #B8860B;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* ============================================
   COOKIE CONSENT BANNER - GRADIENT MODERN
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

.cookie-text a {
  color: #B8860B;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.cookie-reject {
  background: rgba(255,255,255,0.1);
  color: white;
}

.cookie-reject:hover {
  background: rgba(255,255,255,0.2);
}

.cookie-settings {
  background: transparent;
  color: #B8860B;
  border: 1px solid #B8860B;
}

.cookie-settings:hover {
  background: rgba(184, 134, 11, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  margin-bottom: 20px;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cookie-modal-buttons .btn-primary,
.cookie-modal-buttons .btn-secondary {
  flex: 1;
  min-width: 150px;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography Adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header Mobile */
  .main-nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero Mobile */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Sections Mobile */
  section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
  
  .introduction {
    padding: 40px 20px;
  }
  
  /* Cards Mobile */
  .service-cards,
  .feature-grid,
  .testimonial-cards,
  .package-cards {
    gap: 20px;
  }
  
  .service-card,
  .feature,
  .testimonial-card,
  .package-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  /* Footer Mobile */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-legal {
    max-width: 100%;
  }
  
  /* Forms Mobile */
  .form-container {
    padding: 30px 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .input-field {
    width: 100%;
  }
  
  /* Cookie Banner Mobile */
  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  /* Legal Pages Mobile */
  .content-wrapper {
    padding: 30px 20px;
  }
  
  /* Price Items Mobile */
  .price-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .item-price {
    width: 100%;
    justify-content: space-between;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet Adjustments */
  .container {
    padding: 0 30px;
  }
  
  .service-card,
  .package-card {
    min-width: 320px;
    max-width: 48%;
  }
  
  .feature,
  .testimonial-card {
    min-width: 280px;
    max-width: 45%;
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-card,
.feature,
.testimonial-card,
.package-card {
  animation: fadeIn 0.6s ease;
}

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

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #B8860B;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}