:root {
  --gold: #D4AF37;
  --gold-gradient: linear-gradient(135deg, #CF9E58 0%, #E6C68C 50%, #C0924B 100%);
  --black: #0F0F0F;
  --dark-grey: #1A1A1A;
  --medium-grey: #333333;
  --light-grey: #666666;
  --off-white: #F9F9F9;
  --accent-gold: #C5A059;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .premium-font {
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--medium-grey);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Global Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: var(--transition);
}

header.scrolled {
  padding: 1.2rem 5%;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--off-white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  opacity: 0.8;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  opacity: 1;
}

.lang-switcher {
  display: flex;
  gap: 10px;
  list-style: none;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 15px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
  padding: 4px 8px;
  border-radius: 4px;
}

.lang-btn.active {
  opacity: 1;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) grayscale(0.2);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--black) 5%, transparent 60%);
}

.hero-content {
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 1.2s forwards 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  display: block;
  font-weight: 200;
  font-family: inherit;
  color: var(--gold);
}

.hero p {
  color: var(--light-grey);
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.btn-container {
  display: flex;
  gap: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-5px);
}

/* Sections */
section {
  padding: 120px 5%;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--dark-grey);
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: var(--gold);
  transition: var(--transition);
}

.service-card:hover {
  background: #252525;
  transform: translateY(-10px);
}

.service-card:hover::before {
  height: 100%;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-card p {
  color: var(--light-grey);
  font-size: 1rem;
}

/* About Section */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 4px;
}

.about-img::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

/* International Section */
.intl-banner {
  background: var(--dark-grey);
  padding: 100px 10%;
  text-align: center;
}

.intl-banner h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.intl-banner p {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: var(--light-grey);
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item span {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 5px;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 1px solid var(--medium-grey);
  color: #fff;
  border-radius: 2px;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--gold);
}

/* Footer */
footer {
  padding: 60px 5%;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-size: 0.9rem;
  color: var(--light-grey);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  display: block;
}

.footer-logo span {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .contact-container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 4rem; }
}
