:root {
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  --accent-1: #ff007f;
  --accent-2: #7928ca;
  --accent-3: #00f2fe;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  color: var(--text-main);
  background-color: #0b0c10;
  overflow-x: hidden;
  position: relative;
}

/* Animated Vibrant Background Orbs */
body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  animation: floatOrb 20s infinite ease-in-out alternate;
  pointer-events: none;
}

body::before {
  width: 50vw;
  height: 50vw;
  background: var(--accent-1);
  top: -10vw;
  left: -10vw;
  opacity: 0.35;
}

body::after {
  width: 40vw;
  height: 40vw;
  background: var(--accent-2);
  bottom: -10vw;
  right: -10vw;
  opacity: 0.35;
  animation-delay: -5s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(8vw, -8vw) scale(1.1); }
  66% { transform: translate(-5vw, 8vw) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Nav */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  position: fixed;
  width: 90%;
  top: 1.5rem;
  left: 5%;
  z-index: 1000;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  animation: slideDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDown {
  from { top: -100px; opacity: 0; }
  to { top: 1.5rem; opacity: 1; }
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--accent-3), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulseLogo 3s infinite alternate;
}

@keyframes pulseLogo {
  0% { filter: drop-shadow(0 0 2px rgba(0, 242, 254, 0.5)); }
  100% { filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.8)); }
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--accent-3);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--accent-3);
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
}

.btn-primary {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(45deg, var(--accent-1), var(--accent-2));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(121, 40, 202, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(45deg, var(--accent-2), var(--accent-1));
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(121, 40, 202, 0.6);
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12rem 5% 5rem;
  min-height: 100vh;
  gap: 3rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 30vw;
  height: 30vw;
  background: var(--accent-3);
  top: 30%;
  left: 35%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.25;
  animation: floatOrb 25s infinite ease-in-out alternate-reverse;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  animation: fadeRight 1s ease-out forwards;
}

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

.hero-content h1 {
  font-size: 4.8rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-content h1 span {
  background: linear-gradient(to right, var(--accent-3), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  animation: fadeLeft 1s ease-out forwards;
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 30px;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  animation: floatImage 6s ease-in-out infinite;
}

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

/* AI Booking Banner */
.ai-booking-banner {
  margin: 2rem 5% 6rem;
  padding: 5rem 3rem;
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2), inset 0 0 20px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out forwards;
}

.ai-booking-banner::before {
  content: '';
  position: absolute;
  top: -100%; left: -100%; width: 300%; height: 300%;
  background: conic-gradient(from 0deg, transparent, var(--accent-3), transparent, var(--accent-2), transparent);
  animation: rotate 10s linear infinite;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Services */
.services {
  padding: 2rem 5% 5rem;
}

.services h2 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-align: center;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.service-card:hover::after {
  left: 150%;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 242, 254, 0.15);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  animation: bounceIcon 1s infinite;
}

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

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

/* Footer */
footer {
  padding: 3rem 5%;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
}

/* Contact Section */
.contact-section {
  padding: 10rem 5% 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 4rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2), inset 0 0 20px rgba(255,255,255,0.05);
  animation: fadeInUp 1s ease-out forwards;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.info-item .icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.05);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
}

.info-item p {
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-form-wrapper {
  flex: 1.2;
  min-width: 350px;
  background: rgba(255, 255, 255, 0.02);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 0 15px rgba(255,255,255,0.02);
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-3);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
  background: rgba(0, 0, 0, 0.4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
  font-size: 1.1rem;
  padding: 1rem;
}

.form-success-msg {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(46, 213, 115, 0.1);
  border: 1px solid rgba(46, 213, 115, 0.3);
  border-radius: 12px;
  text-align: center;
  color: #2ed573;
  font-weight: 500;
  animation: fadeInUp 0.5s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
  header { width: 100%; top: 0; left: 0; border-radius: 0; }
  .hero { flex-direction: column; text-align: center; padding-top: 8rem; }
  .hero-content h1 { font-size: 3.5rem; }
  .hero-image { justify-content: center; margin-top: 3rem; }
  nav ul { display: none; }
}

/* Animations Utility */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
