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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Kanit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}

/* Global Background Elements */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 223, 186, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(173, 216, 230, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 182, 193, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -2;
}

/* Floating Elements Animation */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
  color: #FFD700;
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.floating-icon:nth-child(3) { top: 60%; left: 5%; animation-delay: 2s; }
.floating-icon:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 3s; }
.floating-icon:nth-child(5) { top: 40%; right: 30%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

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

/* Luxury Card Container */
.luxury-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 2rem 0;
  overflow: hidden;
  position: relative;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FF69B4, #87CEEB);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #2563EB;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1D4ED8;
}

/* Header */
.header {
  background: rgba(44, 62, 80, 0.95);
  backdrop-filter: blur(20px);
  color: white;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo h1 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.logo h1::after {
  content: '🌍';
  position: absolute;
  right: -2rem;
  top: 0;
  animation: rotate 10s linear infinite;
}

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

.tagline {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0;
  color: #87CEEB;
  font-weight: 300;
}

/* Language Switcher */
.language-switcher {
  position: relative;
  z-index: 1000;
}

.lang-dropdown {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(135, 206, 235, 0.2));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.lang-current:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(135, 206, 235, 0.3));
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.lang-current .flag-icon {
  font-size: 1.2rem;
}

.lang-current .fas {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.lang-dropdown.active .lang-current .fas {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.lang-dropdown.active .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  color: #2C3E50;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 10px;
  margin: 0.2rem;
  font-weight: 500;
}

.lang-option:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(135, 206, 235, 0.2));
  transform: translateX(5px);
}

.lang-option.active {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(135, 206, 235, 0.3));
  color: #1a252f;
  font-weight: 600;
}

.lang-option .flag-icon {
  font-size: 1.1rem;
}

.lang-option .lang-text {
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  background: 
    linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 182, 193, 0.1) 50%, rgba(135, 206, 235, 0.1) 100%),
    linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '🧭';
  position: absolute;
  top: 10%;
  left: 10%;
  font-size: 4rem;
  opacity: 0.1;
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '🗺️';
  position: absolute;
  bottom: 10%;
  right: 10%;
  font-size: 3rem;
  opacity: 0.1;
  animation: pulse 4s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.1); opacity: 0.2; }
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF69B4, #87CEEB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); }
  to { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)); }
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

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

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

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #2C3E50;
  font-weight: 700;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  color: #2C3E50;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: white;
}

.btn-phone {
  background: linear-gradient(135deg, #FF69B4, #FF1493);
  color: white;
}

.btn-phone:hover {
  background: linear-gradient(135deg, #FF1493, #FF69B4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
  box-shadow: none;
}

.btn-outline:hover {
  background: #667eea;
  color: white;
}

/* Section Styles */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #2D3748;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 1rem auto;
  border-radius: 2px;
}

/* Services Grid */
.services {
  background: rgba(247, 250, 252, 0.3);
  padding: 5rem 0;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #FF69B4, #87CEEB);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-icon {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #FFD700, #FF69B4, #87CEEB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  position: relative;
  animation: iconFloat 3s ease-in-out infinite;
}

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

.service-card h3 {
  font-size: 1.3rem;
  color: #2D3748;
  margin-bottom: 1rem;
}

.service-card p {
  color: #4A5568;
  line-height: 1.6;
}

/* Country Services */
.country-services {
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.country-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,215,0,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,105,180,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(135,206,235,0.1)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,215,0,0.1)"/></svg>') repeat;
  animation: backgroundMove 20s linear infinite;
  pointer-events: none;
}

@keyframes backgroundMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100px, -100px); }
}

.country-services .section-title {
  color: white;
}

.country-services .section-title::after {
  background: rgba(255, 255, 255, 0.3);
}

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

.country-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.country-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s;
  opacity: 0;
}

.country-card:hover::before {
  opacity: 1;
  top: -60%;
  left: -60%;
}

.country-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.country-flag {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: flagWave 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes flagWave {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.1); }
}

.country-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.country-card p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.country-card .btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.country-card .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

/* Reviews Section */
.reviews {
  background: 
    linear-gradient(135deg, rgba(173, 216, 230, 0.1) 0%, rgba(255, 182, 193, 0.1) 100%),
    rgba(247, 250, 252, 0.8);
  text-align: center;
  position: relative;
}

.reviews::before {
  content: '⭐';
  position: absolute;
  top: 15%;
  left: 5%;
  font-size: 2rem;
  opacity: 0.2;
  animation: twinkle 2s ease-in-out infinite alternate;
}

.reviews::after {
  content: '⭐';
  position: absolute;
  top: 25%;
  right: 8%;
  font-size: 1.5rem;
  opacity: 0.2;
  animation: twinkle 2s ease-in-out infinite alternate-reverse;
}

@keyframes twinkle {
  0% { opacity: 0.2; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.2); }
}

.rating {
  margin-bottom: 3rem;
}

.stars {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 1rem;
}

.rating-text {
  font-size: 1.2rem;
  color: #4A5568;
  font-weight: 500;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: #E2E8F0;
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

.testimonial p {
  font-style: italic;
  color: #4A5568;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author strong {
  color: #2D3748;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #718096;
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  background: 
    radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(135, 206, 235, 0.05) 0%, transparent 50%),
    rgba(255, 255, 255, 0.9);
  position: relative;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s;
}

.contact-item:hover::before {
  left: 100%;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  font-size: 2rem;
  background: linear-gradient(135deg, #FFD700, #FF69B4, #87CEEB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 40px;
  animation: contactPulse 3s ease-in-out infinite;
}

@keyframes contactPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.contact-item strong {
  display: block;
  color: #2D3748;
  margin-bottom: 0.25rem;
}

.office-hours {
  text-align: center;
  background: 
    linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 105, 180, 0.1) 100%),
    linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.office-hours::before {
  content: '🕐';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  opacity: 0.3;
  animation: clockTick 2s ease-in-out infinite;
}

@keyframes clockTick {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

.office-hours h3 {
  margin-bottom: 1rem;
}

.emergency {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Footer */
.footer {
  background: #2D3748;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h3 {
  color: #FFD700;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #CBD5E0;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #4A5568;
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #667eea;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #4A5568;
  color: #CBD5E0;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .header-content {
    text-align: center;
    gap: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .country-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Language Switcher Mobile Responsive */
@media (max-width: 768px) {
  .lang-current {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .lang-current .flag-icon {
    font-size: 1rem;
  }
  
  .lang-menu {
    min-width: 130px;
    right: 0;
  }
  
  .lang-option {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .lang-option .flag-icon {
    font-size: 1rem;
  }
  
  .lang-option .lang-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .service-card,
  .country-card,
  .testimonial {
    padding: 1.5rem;
  }
  
  .lang-current {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }
  
  .lang-current .lang-text {
    display: none;
  }
  
  .lang-menu {
    min-width: 100px;
  }
  
  .lang-option .lang-text {
    font-size: 0.75rem;
  }
}

/* Loading Animation */
body.loaded {
  animation: fadeIn 1s ease-in;
}

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

/* Scroll-triggered animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Interactive hover effects */
.interactive-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.interactive-card:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateZ(20px);
}

/* Luxury gradient borders */
.gradient-border {
  position: relative;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #FFD700, #FF69B4, #87CEEB) border-box;
  border: 3px solid transparent;
  border-radius: 20px;
}

/* Glassmorphism effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Luxury text shimmer effect */
.text-shimmer {
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF69B4, #87CEEB, #FFD700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Magnetic button effect */
.magnetic-btn {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.magnetic-btn:hover {
  cursor: pointer;
}

/* Premium shadows */
.luxury-shadow {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Animated underlines */
.animated-underline {
  position: relative;
  text-decoration: none;
}

.animated-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #FFD700, #FF69B4);
  transition: width 0.4s ease;
}

.animated-underline:hover::after {
  width: 100%;
}

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

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #FFD700, #FF69B4);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #FF69B4, #87CEEB);
}

/* Premium hover glow effects */
.btn:hover {
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-card:hover {
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 30px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Luxury text effects */
.hero-subtitle {
  font-weight: 300;
  font-size: 1.4rem;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.section-title {
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #FFD700, #FF69B4);
  border-radius: 2px;
}

/* Premium card stacking effect */
.testimonial:nth-child(odd) {
  transform: rotate(-1deg);
}

.testimonial:nth-child(even) {
  transform: rotate(1deg);
}

.testimonial:hover {
  transform: rotate(0deg) translateY(-5px) scale(1.02);
  z-index: 10;
}

/* International luxury color palette */
.text-gold { color: #FFD700; }
.text-rose { color: #FF69B4; }
.text-sky { color: #87CEEB; }
.text-platinum { color: #E5E4E2; }

/* Background patterns for luxury feel */
.hero::before {
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 215, 0, 0.15) 1px, transparent 0);
  background-size: 20px 20px;
}

/* Smooth focus states for accessibility */
.btn:focus,
.lang-current:focus,
.lang-option:focus {
  outline: 3px solid rgba(255, 215, 0, 0.5);
  outline-offset: 2px;
}

/* Language Switcher Accessibility */
.lang-menu[aria-hidden="true"] {
  display: none;
}

.lang-option:focus-visible {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(135, 206, 235, 0.4));
}

/* Premium loading states */
.loading-shimmer {
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 215, 0, 0.2) 50%, 
    rgba(255, 255, 255, 0) 100%);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for better accessibility */
.btn:focus,
a:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .cta-buttons {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .section-title {
    page-break-after: avoid;
  }
}