/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Dark Sophisticated Palette */
  --midnight-blue: #0f1419;
  --charcoal: #1a1f2e;
  --slate-gray: #2a3244;
  --deep-navy: #15202b;

  /* Accent Colors */
  --champagne-gold: #d4af37;
  --rose-gold: #b76e79;
  --silver: #c0c5ce;
  --bronze: #cd7f32;

  /* Text Colors */
  --text-primary: #e8eaed;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;

  /* Backgrounds */
  --bg-primary: #0f1419;
  --bg-secondary: #1a1f2e;
  --bg-elevated: #2a3244;
  --bg-card: #1e2530;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #d4af37, #f4d03f);
  --gradient-dark: linear-gradient(135deg, #1a1f2e, #2a3244);
  --gradient-premium: linear-gradient(135deg, #b76e79, #d4af37);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(183, 110, 121, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header - Sleek & Minimal */
header {
  background: rgba(26, 31, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--midnight-blue);
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.05em;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-text {
  display: none; /* Hidden as per request */
}

nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

nav a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

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

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--champagne-gold);
  font-size: 1.75rem;
  cursor: pointer;
}

/* Hero Section - Premium & Bold */
.hero {
  background: var(--bg-secondary);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--champagne-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text .subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-text .description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-image {
  height: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: var(--bg-elevated);
}

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

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(183, 110, 121, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-family: Georgia, serif;
  text-align: center;
  padding: 2rem;
}

/* Buttons - Luxurious */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--midnight-blue);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: rgba(212, 175, 55, 0.1);
  color: var(--champagne-gold);
  border: 2px solid var(--champagne-gold);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 6rem 2rem;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

.bg-mint {
  background-color: var(--bg-secondary);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards - Premium Design */
.card {
  background: var(--bg-card);
  border-radius: 1.25rem;
  padding: 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.card h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Testimonials Carousel */
.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  position: relative;
}

.testimonial {
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  background: var(--bg-card);
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  border: 3px solid var(--champagne-gold);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.testimonial-quote {
  font-size: 3.5rem;
  color: var(--champagne-gold);
  margin-bottom: 0.5rem;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  flex-grow: 1;
  line-height: 1.9;
  font-size: 1.15rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--champagne-gold);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.testimonial-location {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--slate-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--champagne-gold);
  width: 32px;
  border-radius: 6px;
}

.carousel-dot:hover {
  background: var(--rose-gold);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--charcoal);
  border: 2px solid var(--champagne-gold);
  color: var(--champagne-gold);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.carousel-arrow:hover {
  background: var(--champagne-gold);
  color: var(--midnight-blue);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
  left: -80px;
}

.carousel-arrow-right {
  right: -80px;
}

@media (max-width: 1200px) {
  .carousel-arrow-left {
    left: -70px;
  }

  .carousel-arrow-right {
    right: -70px;
  }
}

@media (max-width: 1024px) {
  .carousel-arrow {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }

  .carousel-arrow-left {
    left: -60px;
  }

  .carousel-arrow-right {
    right: -60px;
  }
}

@media (max-width: 768px) {
  .carousel-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }

  .carousel-arrow-left {
    left: -10px;
  }

  .carousel-arrow-right {
    right: -10px;
  }
}

/* Contact Form - Premium */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 1rem;
  border-left: 3px solid var(--champagne-gold);
}

.contact-icon {
  font-size: 2rem;
  color: var(--champagne-gold);
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-item p,
.contact-item a {
  color: var(--text-secondary);
}

.contact-item a:hover {
  color: var(--champagne-gold);
}

form {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-elevated);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--champagne-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  background: var(--bg-secondary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Footer - Sophisticated */
footer {
  background: var(--charcoal);
  color: var(--text-secondary);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

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

.footer-brand {
  font-weight: 700;
  color: var(--champagne-gold);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-gold);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--champagne-gold);
  color: var(--midnight-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: var(--champagne-gold);
}

/* CTA Section - Premium */
.cta {
  background: var(--bg-secondary);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
  pointer-events: none;
}

.cta h2 {
  font-size: 3rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.cta .highlight {
  color: var(--champagne-gold);
  font-weight: 600;
}

/* Job Cards */
.job-card {
  background: var(--bg-card);
  border-radius: 1.25rem;
  padding: 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s;
}

.job-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.job-info h3 {
  color: var(--champagne-gold);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.job-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Image Containers */
.image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%231a1f2e" width="100" height="100"/><circle fill="%23d4af37" fill-opacity="0.05" cx="50" cy="50" r="40"/></svg>');
  opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  nav.mobile-open ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--charcoal);
    justify-content: center;
    align-items: center;
    z-index: 999;
    gap: 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    height: 350px;
  }

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

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

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

  .job-header {
    flex-direction: column;
  }

  form {
    padding: 2rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.slide-up {
  animation: slideUp 1s ease-out;
}

.fade-in-right {
  animation: fadeInRight 1s ease-out;
}

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

/* Selection Color */
::selection {
  background: var(--champagne-gold);
  color: var(--midnight-blue);
}
