@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Ultra Premium Palette - Desert & Nile Theme */
  --color-primary: #D4AF37;       /* Gold */
  --color-primary-glow: rgba(212, 175, 55, 0.4);
  --color-secondary: #0a1128;     /* Midnight Blue */
  --color-tertiary: #1c2541;      /* Deep Ocean */
  --color-accent: #ff7b54;        /* Sunset Orange */
  
  --color-bg-light: #f8f9fa;
  --color-text-dark: #1a1a2e;
  --color-text-muted: #6c757d;
  --color-white: #ffffff;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Layout */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 50px;
  
  /* Shadows */
  --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 50px -15px rgba(10, 17, 40, 0.2);
  --shadow-gold: 0 10px 30px -10px var(--color-primary-glow);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Beautiful Glass Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-white);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

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

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

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #E6C25B, #D4AF37);
  color: var(--color-secondary);
  box-shadow: var(--shadow-gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #D4AF37, #C5A028);
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -10px var(--color-primary-glow);
}
.btn-primary:hover::before {
  opacity: 1;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--color-white);
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.4);
  gap: 10px;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -10px rgba(37, 211, 102, 0.6);
}

/* Stunning Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(10, 17, 40, 0.8) 0%, rgba(10, 17, 40, 0.3) 100%), 
              url('https://images.unsplash.com/photo-1572252009286-268acec5ca0a?q=80&w=2070&auto=format&fit=crop') center/cover;
  z-index: -1;
  animation: bgZoom 20s infinite alternate linear;
}

@keyframes bgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-content {
  max-width: 900px;
  animation: fadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero h1 {
  font-size: 5rem;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero h1 span {
  color: var(--color-primary);
  font-style: italic;
}

.hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 700px;
  margin-inline: auto;
  font-weight: 300;
}

/* Beautiful Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.card-img-wrapper {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.card-content {
  padding: 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 2rem;
  margin-bottom: 15px;
}

.card-desc {
  color: var(--color-text-muted);
  margin-bottom: 25px;
  flex-grow: 1;
}

.price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  color: var(--color-secondary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--color-secondary);
  padding: 120px 0;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
  background: var(--color-tertiary);
  color: var(--color-white);
  padding: 80px 0 40px;
}

/* Utils */
.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: var(--color-secondary);
}

/* Media Queries */
@media (max-width: 992px) {
  .hero h1 { font-size: 3.5rem; }
  .section-title { font-size: 2.5rem; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .nav-container { padding: 15px 20px; }
  .nav-links { display: none; } /* Hide for now */
}
