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

:root {
  --gold: #C9A96E;
  --gold-light: #D4BA8A;
  --gold-dark: #A8884D;
  --navy: #0A1628;
  --navy-light: #111D33;
  --navy-mid: #162340;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --white: #FFFFFF;
  --text-muted: #8A929D;
  --text-dark: #1A1A2E;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  opacity: 0;
  animation: preloaderFadeIn 1s ease 0.3s forwards;
}

.preloader-logo svg {
  width: 100%;
  height: 100%;
}

.preloader-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-top: 30px;
  animation: preloaderLine 1.5s ease 0.8s forwards;
}

.preloader-text {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--gold);
  margin-top: 20px;
  text-transform: uppercase;
  opacity: 0;
  animation: preloaderFadeIn 1s ease 1.2s forwards;
}

@keyframes preloaderFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes preloaderLine {
  to {
    width: 200px;
  }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 60px 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  padding: 12px 60px 10px;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--cream);
  padding-top: 15px;
}

.nav-logo-icon {
  width: 45px;
  height: 45px;
}

.nav-logo-icon svg {
  width: 100%;
  height: 100%;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--gold);
}

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

a.nav-cta {
  padding: 14px 15px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  transition: all 0.4s ease !important;
  background: transparent;
  line-height: 1;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-selector a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.lang-selector a:hover,
.lang-selector a.active {
  color: var(--gold);
}

.lang-divider {
  color: var(--text-muted);
  opacity: 0.3;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.hamburger span {
  width: 30px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.4s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  letter-spacing: 3px;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.97) 0%, rgba(10, 22, 40, 0.7) 50%, rgba(10, 22, 40, 0.85) 100%);
  z-index: 1;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 60px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s ease 2.5s forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-badge span {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s ease 2.7s forwards;
}

.hero-title .gold {
  color: var(--gold);
  font-style: italic;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 30px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s ease 2.9s forwards;
}

.hero-desc {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto 50px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s ease 3.1s forwards;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s ease 3.3s forwards;
}

.btn-primary {
  padding: 18px 45px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary::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 ease;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-secondary {
  padding: 18px 45px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201, 169, 110, 0.3);
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroFadeUp 1s ease 3.6s forwards;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
.section {
  padding: 120px 60px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
}

.section-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

/* About Section */
.about {
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201, 169, 110, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
  transition: all 0.5s ease;
}

.about-image:hover::before {
  top: -10px;
  left: -10px;
}

.about-image-frame {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  pointer-events: none;
}

.about-content {
  padding: 20px 0;
}

.about-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 25px;
  line-height: 1.5;
}

.about-text {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}



/* Services Section */
.services {
  background: var(--navy);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/background_2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(17, 29, 51, 0.6);
  border: 1px solid rgba(201, 169, 110, 0.08);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: rgba(201, 169, 110, 0.06);
  position: absolute;
  top: 15px;
  right: 25px;
  font-weight: 400;
  z-index: 1;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 18px;
}

.service-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}


/* Pricing Info */
.pricing-info {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(17, 29, 51, 0.4);
  border: 1px solid rgba(201, 169, 110, 0.1);
  backdrop-filter: blur(10px);
}

.pricing-item {
  flex: 1;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.4s ease;
}

.pricing-item:hover {
  background: rgba(201, 169, 110, 0.03);
}

.pricing-label {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.pricing-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--cream);
  font-weight: 400;
}

.pricing-divider {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.3), transparent);
}

.pricing-note {
  margin-top: 30px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
  }
  .pricing-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.3), transparent);
  }
  .pricing-item {
    padding: 40px 20px;
  }
}

/* Experience Banner */

.experience-banner {
  padding: 100px 60px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.experience-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/background_3.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.exp-stat {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  background: rgba(10, 22, 40, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.exp-stat:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-5px);
}

.exp-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.exp-stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Contact Section */
.contact {
  background: var(--navy);
  position: relative;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-label {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 25px;
  line-height: 1.2;
}

.contact-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
}

.contact-text {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 70px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-details {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 20px 60px;
  width: auto;
  flex: 1;
}

.contact-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.3), transparent);
  flex-shrink: 0;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-content h4 {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-detail-content p {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-detail-content a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
}

.contact-detail-content a:hover {
  color: var(--gold);
}

/* Footer */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  padding: 60px 60px 80px;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
}

.footer-logo-icon svg {
  width: 100%;
  height: 100%;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 1px;
}

.footer-brand-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copyright {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-languages {
  display: flex;
  gap: 15px;
}

.footer-languages a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-languages a:hover,
.footer-languages a.active {
  color: var(--gold);
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Gold Divider */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 60px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 50px;
  }

  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 15px 30px;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav.scrolled {
    padding: 10px 30px;
  }

  .nav.scrolled .nav-right {
    display: none;
  }

  .nav-right {
    display: flex;
    order: -1;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  }

  .nav-links {
    display: none;
  }

  .lang-selector {
    width: 100%;
    justify-content: flex-end;
  }

  .lang-selector a {
    font-size: 13px;
    padding: 5px;
  }

  .nav-logo {
    padding-top: 0;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .section {
    padding: 80px 30px;
  }

  .nav-logo-icon {
    width: 35px;
    height: 35px;
  }

  .nav-logo-text {
    font-size: 16px;
  }

  .hero {
    padding-top: 80px;
    height: auto;
    min-height: 100vh;
  }

  .hero-title {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-badge {
    margin-bottom: 20px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-content {
    padding: 40px 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 400px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .experience-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .exp-stat {
    padding: 30px 15px;
  }

  .exp-stat-number {
    font-size: 40px;
  }

  .contact-details {
    flex-direction: column;
    gap: 30px;
  }

  .contact-detail:nth-child(3) {
    order: 1;
  }

  /* Telefon (it's the 3rd child because of dividers) */
  .contact-detail:nth-child(1) {
    order: 2;
  }

  /* E-mail */
  .contact-detail:nth-child(5) {
    order: 3;
  }

  /* Standort */

  .contact-divider {
    display: none;
  }

  .contact-detail {
    padding: 10px 40px;
    width: 100%;
  }

  .contact-text {
    font-size: 18px;
  }



  .footer {
    padding: 40px 30px 60px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .experience-banner {
    padding: 60px 30px;
  }
}

@media (max-width: 480px) {


  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
  }
}

/* Smooth number counter animation */
.counter {
  display: inline-block;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding: 20px 40px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

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

.cookie-text {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--cream);
  line-height: 1.5;
  flex: 1;
  min-width: 250px;
}

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

.btn-cookie {
  padding: 10px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
}

.btn-cookie-accept {
  background: var(--gold);
  color: var(--navy);
}

.btn-cookie-accept:hover {
  background: var(--gold-light);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--gold);
}

.btn-cookie-reject:hover {
  background: rgba(201, 169, 110, 0.1);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }

  .btn-cookie {
    flex: 1;
    text-align: center;
  }
}