@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --text-primary: #F2F2F2;
  --text-muted: #A0A0A0;
  --accent-gold: #D4AF37;
  --accent-gold-hover: #F9D77E;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(212, 175, 55, 0.2);
  --glass-border-hover: rgba(212, 175, 55, 0.8);

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.text-gold {
  color: var(--accent-gold);
}

.text-muted {
  color: var(--text-muted);
}

/* Base Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
  opacity: 1;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero h1 {
  font-size: 4rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-primary);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-visual {
  margin-top: 4rem;
  animation: float 6s ease-in-out infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border-radius: 2px;
}

.btn:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* Cards (Glassmorphism) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 2.5rem;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card .btn-wrap {
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
}

.card:hover .btn-wrap {
  opacity: 1;
  transform: translateY(0);
}

/* Service Detail Sections */
.service-detail {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  scroll-margin-top: 130px;
}

.service-detail:nth-child(even) {
  background: var(--bg-secondary);
}

.service-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.service-hero h2 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.service-hero p {
  color: var(--text-primary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.service-block:nth-child(even) {
  direction: rtl;
}

.service-block:nth-child(even)>* {
  direction: ltr;
}

.block-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.block-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}

.block-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.block-visual {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 2rem;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Packs Premium Specific */
.pack-card {
  border-width: 2px;
  padding: 3rem;
}

.pack-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.pack-card.global {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
  border-color: var(--accent-gold);
}

.pack-card.global h3 {
  font-size: 2.2rem;
}

.pack-services {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pack-service-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

.pack-card ul {
  list-style-type: none;
  margin-bottom: 2.5rem;
}

.pack-card ul li {
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.pack-card ul li i {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Call to Action */
.cta-section {
  text-align: center;
  padding: 8rem 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 1) 100%);
}

.cta-section h2 {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  nav {
    position: absolute !important;
    background: transparent !important;
    border-bottom: none !important;
  }
  .nav-content {
    display: block;
    height: auto;
    padding: 1rem 1.5rem;
    position: relative;
  }
  .logo {
    position: absolute !important;
    top: 1rem;
    left: 1.5rem;
    height: 45px !important;
    margin: 0;
  }
  .nav-actions {
    display: block;
    width: 100%;
  }
  .lang-dropdown {
    position: absolute !important;
    top: 1.2rem;
    right: 1.5rem;
    margin: 0;
  }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    width: 100%;
    margin-top: 4.5rem;
  }
  .nav-links a {
    font-size: 0.85rem;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
  }
  .grid {
    grid-template-columns: 1fr !important;
  }
  .service-block {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr !important;
  }
  .service-block:nth-child(even)>* {
    direction: ltr;
  }
  .pack-card {
    padding: 2rem 1.5rem !important;
  }
  .pack-card.global h3 {
    font-size: 1.8rem !important;
  }
  nav ~ .hero, nav ~ .product-hero {
    padding-top: 160px !important;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
}

/* Language Switcher Dropdown */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all var(--transition-fast);
}

.lang-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
  z-index: 1000;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-dropdown:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu a {
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: background var(--transition-fast);
}

.lang-menu a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
}

.lang-menu a.active {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.05);
}

/* Pricing Tags */
.price-tag {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.2rem;
  font-style: italic;
}
