:root {
  --primary-dark: #0a0a0a;
  --primary-light: #ffffff;
  --accent-gold: #c9a961;
  --text-gray: #666666;
  --border-light: #e0e0e0;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--primary-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  background: #f5f5f5;
}


/* Language Toggle */
.language-toggle {
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 15px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.lang-btn {
  background: none;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 5px 10px;
  color: var(--text-gray);
  transition: var(--transition);
}

.lang-btn.active {
  color: var(--primary-dark);
}

.lang-btn:hover {
  color: var(--accent-gold);
}

.divider {
  color: var(--border-light);
  font-size: 12px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #f5f5f5;
  overflow: hidden;
}

.hero-bg {
  display: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  text-align: center;
  z-index: 10;
  padding: 60px 20px;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-container {
  margin-bottom: 50px;
  animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.main-logo {
  width: 480px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.main-logo:hover {
  transform: scale(1.03) translateY(-5px);
  filter: drop-shadow(0 30px 60px rgba(201, 169, 97, 0.2));
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.description {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 400;
}

.established {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  font-weight: 600;
  padding: 12px 30px;
  border: 2px solid var(--accent-gold);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.established:hover {
  color: white;
  background: var(--accent-gold);
}

/* Services Section */
.services-preview {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 60px;
  color: var(--accent-gold);
  margin-bottom: 25px;
  font-weight: 100;
  display: inline-block;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.service-card:hover .service-icon {
  animation-play-state: paused;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.service-card p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
}

/* Business Showcase */
.business-showcase {
  padding: 80px 20px;
  background: white;
}

.showcase-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}

.showcase-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

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

.contact-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 60px;
  color: white;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  margin-bottom: 80px;
}

.contact-label {
  color: var(--accent-gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.address address {
  font-style: normal;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.email a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s;
  display: inline-block;
  border-bottom: 2px solid transparent;
}

.email a:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .language-toggle {
    top: 20px;
    right: 20px;
  }

  .main-logo {
    width: 320px;
  }

  .tagline {
    font-size: 28px;
  }

  .description {
    font-size: 16px;
  }

  .services-preview {
    padding: 60px 20px;
  }

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

  .contact-info {
    gap: 40px;
  }
}

/* Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: var(--accent-gold);
  color: white;
}

::-moz-selection {
  background: var(--accent-gold);
  color: white;
}