:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gold: #d4af37;
  --color-light-gray: #f8f8f8;
  --color-dark-gray: #333333;
  --color-medium-gray: #666666;
  --color-border: #e5e5e5;

  --font-serif: "Playfair Display", serif;
  --font-sans: "Source Sans 3", sans-serif;

  --container-max-width: 1200px;
  --section-padding: 80px 0;

  --transition-smooth: all 0.3s ease;
  --transition-slow: all 0.8s ease-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--color-white);
  background-color: var(--color-black);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.6;
}

.accent-text {
  color: var(--color-gold);
  display: block;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-black);
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #c19b26;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  padding: 16px 32px;
  border: 2px solid var(--color-white);
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.nav-transparent {
  background-color: transparent;
}

.nav-scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 8px 24px 8px 220px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  width: 180px;
  height: 180px;
  z-index: 9999;
  color: var(--color-gold);
  position: absolute;
  left: -45px;
  top: 70%;
  transform: translateY(-50%);
}

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

.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition-smooth);
}

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

.language-select {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  outline: none;
  text-align: center;
}

.language-select:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

.language-select option {
  background-color: var(--color-black);
  color: var(--color-white);
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  margin: -10px;
  transition: transform 0.3s ease;
}

.burger-menu:hover {
  transform: scale(1.1);
}

.burger-menu .bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.burger-menu.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--color-gold);
}

.burger-menu.active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.burger-menu.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--color-gold);
}

a {
  text-decoration: none;
  color: var(--color-black);
}
@media (max-width: 768px) {
  .nav-content {
    display: flex;
    flex-direction: row-reverse;
    padding-top: 12px;
    padding-left: 24px;
    min-height: 64px;
  }
  .burger-menu {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    padding: 0;
  }

  .nav-links.active {
    right: 0;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .nav-links a {
    font-size: 1.5rem;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    color: var(--color-white) !important;
    font-weight: 300;
    letter-spacing: 1px;
  }

  .nav-links a:hover {
    color: var(--color-gold);
    transform: scale(1.1);
    opacity: 1;
  }

  body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
  }

  body.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-btn {
    display: none;
  }
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  will-change: transform;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-title {
  margin-bottom: 24px;
  /*text-balance: balance;*/
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  /*text-pretty: pretty;*/
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.services {
  padding: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: var(--color-white);
  position: relative;
  z-index: 2;
  margin-top: 100vh;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 2;
}

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

.section-header h2 {
  color: var(--color-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    var(--color-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.services-banners {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-banner {
  position: relative;
  height: 300px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transition: all 0.6s ease;
}

.service-banner:hover .service-banner-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.service-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  transform: translateX(-20px);
  opacity: 0.9;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-banner:hover .service-banner-content {
  transform: translateX(0);
  opacity: 1;
}

.service-banner h3 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    var(--color-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.service-btn {
  background: linear-gradient(135deg, var(--color-gold) 0%, #f4d03f 100%);
  color: var(--color-black);
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #f4d03f 0%, var(--color-gold) 100%);
}

@media (max-width: 768px) {
  .service-banner {
    height: 250px;
  }

  .service-banner h3 {
    font-size: 2rem;
  }

  .service-banner p {
    font-size: 1rem;
  }

  .service-banner-content {
    padding: 0 8%;
  }
}

.about {
  padding: 0;
  position: relative;
  background-color: var(--color-black);
}

.about-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: var(--section-padding);
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-description {
  margin-bottom: 32px;
}

.about-description p {
  margin-bottom: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-medium-gray);
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.img-re {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .img-re {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
  }

  .about-image img {
    width: 45%;
  }
}

@media screen and (min-width: 1024px) {
  .img-re {
    display: flex;
    flex-direction: column;
    height: 50%;
    justify-content: space-around;
  }

  .about-image img {
    width: 100%;
  }
}

.contact {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #0f0f0f 0%, #1e1e1e 50%, #0f0f0f 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 70% 30%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 70%,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact .section-header h2 {
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    var(--color-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .section-header p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--color-white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15),
    0 8px 25px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
  color: var(--color-white);
  margin-bottom: 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    var(--color-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-items {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-item:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateX(8px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-gold) 0%, #f4d03f 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-title {
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.contact-value {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.availability-info {
  background: linear-gradient(
    145deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 32px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.availability-info h4 {
  color: var(--color-white);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.availability-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-weight: 300;
}

.footer {
  background-color: var(--color-black);
  padding: 48px 0 24px;
  border-top: 1px solid var(--color-border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--color-medium-gray);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--color-gold);
  color: var(--color-black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background-color: #c19b26;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  text-align: center;
  color: var(--color-medium-gray);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.luxury-hover {
  transition: var(--transition-smooth);
}

.luxury-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

@media (max-width: 1024px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

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