/* ================================================
   YERKUZLU — ULTRA LUXURY DESIGN SYSTEM
   ================================================ */

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

/* ---- Variables ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dim: #9B7B2E;
  --gold-glow: rgba(201, 168, 76, 0.18);
  --gold-border: rgba(201, 168, 76, 0.28);
  --gold-gradient: linear-gradient(135deg, #9B7B2E 0%, #C9A84C 40%, #E8D5A3 65%, #C9A84C 85%, #9B7B2E 100%);

  --bg-0: #050505;
  --bg-1: #0C0C0C;
  --bg-2: #131313;
  --bg-3: #1A1A1A;
  --bg-4: #222222;
  --bg-5: #2C2C2C;

  --text-1: #F2EEE8;
  --text-2: #C8C0B4;
  --text-3: #8A8278;
  --text-4: #5C5650;

  --border-1: rgba(255, 255, 255, 0.06);
  --border-2: rgba(255, 255, 255, 0.10);

  --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 48px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.14);

  --nav-h: 80px;
  --max-w: 1300px;
  --pad-x: clamp(20px, 5vw, 80px);
  --section-v: clamp(80px, 10vw, 140px);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t1: 0.3s;
  --t2: 0.6s;
  --t3: 0.9s;

  --ff-display: 'Cormorant Garamond', 'Georgia', serif;
  --ff-body: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --ff-brand: 'Audiowide', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ================================================
   SCROLLBAR
   ================================================ */
::-webkit-scrollbar {
  width: 6px;
}

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

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

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

/* ================================================
   UTILITY CLASSES
   ================================================ */
.lux-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.lux-section {
  padding: var(--section-v) 0;
  position: relative;
}

.lux-section--dark {
  background: var(--bg-0);
}

.lux-section--mid {
  background: var(--bg-2);
}

.lux-section--light {
  background: var(--bg-3);
}

/* Gold ornament line */
.lux-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.lux-ornament__line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold-gradient);
}

.lux-ornament__diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Section heading */
.lux-heading {
  text-align: center;
  margin-bottom: 70px;
}

.lux-heading__pre {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.lux-heading__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-1);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.lux-heading__title em {
  font-style: italic;
  color: var(--gold-light);
}

.lux-heading__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
}

.lux-heading__divider::before,
.lux-heading__divider::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold-gradient);
}

.lux-heading__divider-gem {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  position: relative;
}

.lux-heading__divider-gem::before,
.lux-heading__divider-gem::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-dim);
  transform: rotate(45deg);
  top: 50%;
  margin-top: -2px;
}

.lux-heading__divider-gem::before {
  right: 14px;
}

.lux-heading__divider-gem::after {
  left: 14px;
}

/* Gold button */
.lux-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  transition: color var(--t1) var(--ease), box-shadow var(--t1) var(--ease);
  cursor: pointer;
}

.lux-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-105%);
  transition: transform var(--t2) var(--ease);
  z-index: 0;
}

.lux-btn:hover {
  color: var(--bg-0);
  box-shadow: var(--shadow-gold);
}

.lux-btn:hover::before {
  transform: translateX(0);
}

.lux-btn span,
.lux-btn i {
  position: relative;
  z-index: 1;
}

.lux-btn--solid {
  background: var(--gold);
  color: var(--bg-0);
}

.lux-btn--solid::before {
  background: var(--gold-light);
}

.lux-btn--solid:hover {
  color: var(--bg-0);
}

/* Reveal animation */
.lux-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--t3) var(--ease-out), transform var(--t3) var(--ease-out);
}

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

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

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

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

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

/* ================================================
   NAVIGATION
   ================================================ */
.lux-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--nav-h);
  transition: background var(--t2) var(--ease), box-shadow var(--t2) var(--ease), border-color var(--t2) var(--ease);
  border-bottom: 1px solid transparent;
}

.lux-nav.scrolled {
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.lux-nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  gap: 40px;
}

.lux-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lux-nav__logo img {
  height: 38px;
  width: auto;
  filter: brightness(1.1);
  transition: filter var(--t1);
}

.lux-nav__logo img:hover {
  filter: brightness(1.3);
}

.lux-nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.lux-nav__link {
  display: block;
  padding: 8px 18px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  transition: color var(--t1) var(--ease);
}

.lux-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left var(--t2) var(--ease), right var(--t2) var(--ease);
}

.lux-nav__link:hover,
.lux-nav__link.active {
  color: var(--gold-light);
}

.lux-nav__link:hover::after,
.lux-nav__link.active::after {
  left: 18px;
  right: 18px;
}

/* Language dropdown */
.lux-nav__lang {
  position: relative;
  flex-shrink: 0;
}

.lux-nav__lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  background: transparent;
  transition: background var(--t1), border-color var(--t1);
  white-space: nowrap;
}

.lux-nav__lang-btn:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

.lux-nav__lang-btn .lux-chevron {
  font-size: 0.6rem;
  transition: transform var(--t1) var(--ease);
}

.lux-nav__lang.open .lux-chevron {
  transform: rotate(180deg);
}

.lux-nav__lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 170px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-top: 2px solid var(--gold);
  padding: 8px 0;
  border-radius: 0 0 10px 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t1) var(--ease), transform var(--t1) var(--ease), visibility var(--t1);
  box-shadow: var(--shadow-md);
}

.lux-nav__lang.open .lux-nav__lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lux-nav__lang-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-2);
  transition: color var(--t1), background var(--t1);
  cursor: pointer;
}

.lux-nav__lang-item:hover {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
}

.lux-nav__lang-item .sl-flag {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Mobile toggle */
.lux-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  margin-left: auto;
}

.lux-nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  transition: transform var(--t2) var(--ease), opacity var(--t1), width var(--t1);
}

.lux-nav__toggle span:nth-child(1) {
  width: 100%;
}

.lux-nav__toggle span:nth-child(2) {
  width: 70%;
}

.lux-nav__toggle span:nth-child(3) {
  width: 85%;
}

.lux-nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
  width: 100%;
}

.lux-nav__toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.lux-nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
  width: 100%;
}

/* Mobile menu overlay */
.lux-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t2) var(--ease);
}

.lux-mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.lux-mobile-menu__link {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-2);
  padding: 12px 20px;
  transition: color var(--t1);
}

.lux-mobile-menu__link:hover {
  color: var(--gold-light);
}

.lux-mobile-menu__divider {
  width: 1px;
  height: 20px;
  background: var(--gold-border);
  margin: 4px 0;
}

.lux-mobile-menu__lang {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  padding: 0 20px;
}

.lux-mobile-menu__lang-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--border-1);
  transition: color var(--t1), border-color var(--t1);
}

.lux-mobile-menu__lang-item:hover {
  color: var(--gold);
  border-color: var(--gold-border);
}

/* ================================================
   HERO SECTION
   ================================================ */
.lux-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-0);
}

.lux-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201, 168, 76, 0.03) 0%, transparent 60%);
  z-index: 1;
}

.lux-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../png/antrepo.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0.12;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.lux-hero.loaded .lux-hero__bg {
  transform: scale(1);
}

.lux-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(5, 5, 5, 0.2) 0%,
      rgba(5, 5, 5, 0.5) 40%,
      rgba(5, 5, 5, 0.85) 100%);
  z-index: 2;
}

.lux-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) var(--pad-x) 60px;
  max-width: 900px;
}

.lux-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInDown 1s var(--ease-out) 0.3s forwards;
}

.lux-hero__badge-line {
  width: 40px;
  height: 1px;
  background: var(--gold-gradient);
}

.lux-hero__badge-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.lux-hero__title {
  font-family: var(--ff-brand);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 0.5s forwards;
}

.lux-hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 30px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 0.7s forwards;
}

.lux-hero__divider::before,
.lux-hero__divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold-gradient);
}

.lux-hero__divider-gem {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.lux-hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 44px;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 0.9s forwards;
}

.lux-hero__actions {
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 1.1s forwards;
}

/* Hero scroll indicator */
.lux-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.lux-hero__scroll-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-3);
}

.lux-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.lux-page-hero {
  padding: calc(var(--nav-h) + 80px) var(--pad-x) 80px;
  text-align: center;
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}

.lux-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.lux-page-hero__subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.lux-page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text-1);
  letter-spacing: 0.04em;
  line-height: 1.15;
}

/* ================================================
   WHY US  / ABOUT INTRO SECTION
   ================================================ */
.lux-intro {
  background: var(--bg-1);
}

.lux-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lux-intro__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.lux-intro__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-1);
  margin-bottom: 24px;
}

.lux-intro__text {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 36px;
}

.lux-intro__img-wrap {
  position: relative;
}

.lux-intro__img-wrap::before {
  content: '';
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid var(--gold-border);
  pointer-events: none;
  z-index: 0;
}

.lux-intro__img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.85);
  transition: filter var(--t2) var(--ease);
}

.lux-intro__img:hover {
  filter: grayscale(0%) brightness(0.95);
}

/* ================================================
   FEATURES / WHY CHOOSE US
   ================================================ */
.lux-features {
  background: var(--bg-0);
}

.lux-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

@media (max-width: 1100px) {
  .lux-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .lux-features__grid {
    grid-template-columns: 1fr;
  }
}

.lux-card {
  background: var(--bg-2);
  padding: 48px 32px 44px;
  border: 1px solid var(--border-1);
  border-top: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: border-top-color var(--t2) var(--ease), background var(--t2) var(--ease), box-shadow var(--t2) var(--ease);
}

.lux-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t3) var(--ease);
}

.lux-card:hover {
  background: var(--bg-3);
  box-shadow: var(--shadow-gold);
}

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

.lux-card__icon-wrap {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  transition: border-color var(--t2), background var(--t2);
}

.lux-card:hover .lux-card__icon-wrap {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.lux-card__icon-wrap i {
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform var(--t2) var(--ease);
}

.lux-card:hover .lux-card__icon-wrap i {
  transform: scale(1.15);
}

.lux-card__number {
  display: none;
}

.lux-card__title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.lux-card__text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-3);
  transition: color var(--t2);
}

.lux-card:hover .lux-card__text {
  color: var(--text-2);
}

/* ================================================
   DISTRIBUTION MAP SECTION
   ================================================ */
.lux-distrib {
  background: var(--bg-2);
  position: relative;
}

.lux-distrib::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.lux-distrib__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.lux-distrib__map-wrap {
  position: relative;
}

.lux-distrib__map-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, var(--bg-2) 100%);
  pointer-events: none;
}

.lux-distrib__map {
  width: 100%;
  display: block;
  filter: brightness(0.9) saturate(0.7);
  transition: filter var(--t2) var(--ease);
}

.lux-distrib__map-wrap:hover .lux-distrib__map {
  filter: brightness(1.05) saturate(1);
}

@media (max-width: 1024px) {
  .lux-distrib__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ================================================
   CONTACT FORM SECTION
   ================================================ */
.lux-cta {
  background: var(--bg-1);
  position: relative;
}

.lux-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}

.lux-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.lux-cta__info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.lux-cta__info-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-1);
  margin-bottom: 24px;
}

.lux-cta__info-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-2);
}

/* Form styles */
.lux-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lux-form__group {
  position: relative;
}

.lux-form__input,
.lux-form__textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-2);
  padding: 17px 20px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-1);
  outline: none;
  transition: border-color var(--t1), background var(--t1), box-shadow var(--t1);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

input[type="tel"] {
  font-family: var(--ff-body);
  font-variant-numeric: normal;
  -moz-font-feature-settings: normal;
  font-feature-settings: normal;
}
.lux-form__input::placeholder,
.lux-form__textarea::placeholder {
  color: var(--text-4);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.lux-form__input:focus,
.lux-form__textarea:focus {
  border-color: var(--gold-border);
  border-bottom-color: var(--gold);
  background: var(--bg-4);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.06);
}

.lux-form__textarea {
  min-height: 130px;
  resize: vertical;
}

/* Hide honeypot */
.lux-form__hp {
  display: none !important;
}

.lux-form__submit {
  align-self: flex-start;
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.lux-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.lux-contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lux-contact-block {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-left: 2px solid var(--gold);
  transition: box-shadow var(--t2);
}

.lux-contact-block:hover {
  box-shadow: var(--shadow-gold);
}

.lux-contact-block__sep {
  height: 1px;
  background: linear-gradient(to right, var(--gold-border), transparent);
  margin: 24px 0;
}

.lux-contact-block__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.lux-contact-block__icon i {
  font-size: 1.1rem;
  color: var(--gold);
}

.lux-contact-block__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.lux-contact-block__text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-2);
}

/* Social icons */
.lux-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.lux-social__link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 0.95rem;
  transition: color var(--t1), border-color var(--t1), background var(--t1);
}

.lux-social__link:hover {
  color: var(--gold);
  border-color: var(--gold-border);
  background: var(--gold-glow);
}

/* Contact intro — tam section padding, ortaya hizalı */
.lux-contact-intro .lux-content-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lux-contact-intro .lux-prose {
  text-align: center;
}

/* Map section */
.lux-map-section {
  background: var(--bg-0);
  padding: 0;
}

/* Map */
.lux-map {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--border-1);
  filter: grayscale(100%) brightness(0.5) sepia(20%);
  transition: filter var(--t2);
}

.lux-map:hover {
  filter: grayscale(50%) brightness(0.7) sepia(10%);
}

/* ================================================
   ABOUT / VISION CONTENT
   ================================================ */
.lux-content-section {
  background: var(--bg-1);
}

.lux-content-section__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.lux-prose {
  font-size: clamp(0.95rem, 1.8vw, 1.06rem);
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

.lux-prose br {
  display: block;
  margin-bottom: 1.2em;
  content: '';
}

.lux-prose strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* Vision highlights */
.lux-vision-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 70px;
}

@media (max-width: 768px) {
  .lux-vision-points {
    grid-template-columns: 1fr;
  }
}

.lux-vision-point {
  padding: 32px 24px;
  border: 1px solid var(--border-1);
  border-top: 2px solid var(--gold);
  background: var(--bg-2);
  text-align: left;
}

.lux-vision-point__num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 16px;
}

.lux-vision-point__text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-2);
}

/* ================================================
   FOOTER
   ================================================ */
.lux-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border-1);
}

.lux-footer__top {
  padding: 70px 0 60px;
}

.lux-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
}

@media (max-width: 1000px) {
  .lux-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .lux-footer__grid {
    grid-template-columns: 1fr;
  }
}

.lux-footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.9;
}

.lux-footer__desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-3);
  margin-bottom: 28px;
}

.lux-footer__col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-border);
}

.lux-footer__link {
  display: block;
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--text-3);
  padding: 6px 0;
  transition: color var(--t1), padding-left var(--t1);
}

.lux-footer__link:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.lux-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.6;
}

.lux-footer__contact-item i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.lux-footer__bottom {
  border-top: 1px solid var(--border-1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lux-footer__copyright {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-4);
  letter-spacing: 0.5px;
}

.lux-footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.lux-wa {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  z-index: 8888;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: transform var(--t1) var(--ease), box-shadow var(--t1);
}

.lux-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.25);
  animation: waPulse 2.5s ease-in-out infinite;
}

.lux-wa i {
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.lux-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

/* ================================================
   KEYFRAMES
   ================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.4);
    opacity: 0;
  }

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

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .lux-intro__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .lux-intro__img-wrap {
    order: -1;
  }

  .lux-cta__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .lux-contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
    --section-v: 70px;
  }

  .lux-nav__links,
  .lux-nav__lang {
    display: none;
  }

  .lux-nav__toggle {
    display: flex;
  }

  .lux-mobile-menu {
    display: flex;
  }

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

  .lux-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lux-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .lux-features__grid {
    grid-template-columns: 1fr;
  }

  .lux-card {
    padding: 36px 24px 32px;
  }

  .lux-hero__title {
    letter-spacing: 0.06em;
  }
}

/* ================================================
   SELECTION
   ================================================ */
::selection {
  background: rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
}

/* ================================================
   FLAG ICONS  (images from ./image/)
   ================================================ */
.sl-flag {
  display: inline-block;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  width: 20px;
  height: 14px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  flex-shrink: 0;
}

.flag-tr {
  background-image: url('../image/turkey.png');
}

.flag-en {
  background-image: url('../image/united-kingdom.png');
}

.flag-de {
  background-image: url('../image/germany.png');
}

.flag-fr {
  background-image: url('../image/france.png');
}

.flag-it {
  background-image: url('../image/italy.png');
}

.flag-pt {
  background-image: url('../image/portugal.png');
}

.flag-sp {
  background-image: url('../image/spain.png');
}