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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2d1810 50%, #1a1a1a 75%, #0a0a0a 100%);
  color: #f5f5f5;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Background Elements */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(218, 165, 32, 0.3), rgba(184, 134, 11, 0.2), rgba(139, 69, 19, 0.1));
  filter: blur(1px);
  animation: float-optimized 25s infinite ease-in-out;
  opacity: 0.4;
  will-change: transform;
}

.bg-orb:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 15%;
  animation-duration: 30s;
}

.bg-orb:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 20%;
  animation-duration: 35s;
  animation-delay: 10s;
}

@keyframes float-optimized {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(30px, -20px, 0);
  }
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #DAA520;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  opacity: 0;
}

.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #DAA520;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.6;
  transition: all 0.2s ease;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 50px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(218, 165, 32, 0.3);
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #FFD700, #DAA520, #B8860B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo span {
  color: #DAA520;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #DAA520);
  transition: width 0.2s ease;
}

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

nav a:hover,
nav a.active {
  color: #FFD700;
  transform: translateY(-1px);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(218, 165, 32, 0.5) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 50px;
  margin-top: 80px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -4px;
  background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 25%, #DAA520 50%, #FFFFFF 75%, #B8860B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  color: #F5F5F5;
  margin-bottom: 60px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-cta {
  display: inline-block;
  padding: 20px 60px;
  background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #B8860B 100%);
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4);
}

.hero-cta:hover {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
}

/* Numbers Section */
.numbers {
  padding: 80px 50px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #0a0a0a 100%);
  position: relative;
}

.numbers-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.number-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.number-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.number {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  color: #ffffff;
}

.number-label {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #cccccc;
}

/* Models Section */
.models {
  padding: 80px 50px;
  background: linear-gradient(135deg, #f7e7ce 0%, #8f5b23 100%);
  position: relative;
}

.models-header {
  max-width: 1400px;
  margin: 0 auto 60px;
  text-align: center;
}

.models-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -3px;
  color: #ffffff;
  margin-bottom: 20px;
}

.models-subtitle {
  font-size: 1.2rem;
  color: #2c2c2c;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.model-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.model-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.model-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.model-card:hover .model-image {
  transform: scale(1.05);
}

.model-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #ffffff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.model-card:hover .model-overlay {
  transform: translateY(0);
}

.model-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.model-info {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* Contact Section */
.contact-hero {
  text-align: center;
  padding: 80px 50px 60px;
  position: relative;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(218, 165, 32, 0.5) 0%, transparent 50%);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -3px;
  background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 25%, #DAA520 50%, #FFFFFF 75%, #B8860B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: #F5F5F5;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-description {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  font-weight: 300;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 50px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #0a0a0a 100%);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info,
.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3,
.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.info-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-label {
  font-size: 0.9rem;
  color: #DAA520;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-text {
  font-size: 1.1rem;
  color: #f5f5f5;
  font-weight: 400;
  line-height: 1.6;
}

.info-text a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: #ffffff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  color: #DAA520;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

.required {
  color: #ff6b6b;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #f5f5f5;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #DAA520;
  background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999999;
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: #1a1a1a;
  color: #f5f5f5;
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  accent-color: #DAA520;
  cursor: pointer;
}

.checkbox-label {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label a {
  color: #FFD700;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #B8860B 100%);
  color: #0a0a0a;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  transform: translateY(-2px);
}

.file-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.file-upload input[type=file] {
  position: absolute;
  left: -9999px;
}

.file-upload-label {
  display: block;
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #cccccc;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
}

.file-upload-label:hover {
  border-color: #DAA520;
  background: rgba(255, 255, 255, 0.15);
  color: #FFD700;
}

.upload-icon {
  font-size: 20px;
  color: #DAA520;
}

/* About Section */
.about-content {
  padding: 80px 50px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #0a0a0a 100%);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  position: relative;
}

.about-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: #ffffff;
  margin-bottom: 30px;
}

.about-description {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-highlight {
  font-size: 1.3rem;
  color: #FFD700;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFD700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.95rem;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services-section {
  padding: 80px 50px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #2d1810 100%);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(218, 165, 32, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(139, 69, 19, 0.15) 0%, transparent 40%);
  z-index: 1;
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.services-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 50%, #DAA520 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}

.services-subtitle {
  font-size: 1rem;
  color: #cccccc;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 0 20px;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  width: max-content;
}


.service-card {
  flex: 0 0 300px;
  margin: 0;
  min-width: 300px;
  max-width: 100%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(218, 165, 32, 0.2);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .service-card {
    flex: 0 0 calc(100% / 2 - 30px);
  }
}

@media (max-width: 640px) {
  .service-card {
    flex: 0 0 100%;
  }
}


.service-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border-color: rgba(218, 165, 32, 0.4);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #DAA520, #B8860B);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.service-icon {
  font-size: 1.8rem;
  margin-right: 12px;
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
  padding: 8px;
  border-radius: 8px;
  min-width: 45px;
  text-align: center;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-description {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.5;
  font-weight: 300;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 140px;
}

.carousel-btn {
  background: rgba(218, 165, 32, 0.2);
  border: 1px solid rgba(218, 165, 32, 0.3);
  color: #FFD700;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(218, 165, 32, 0.4);
  border-color: rgba(218, 165, 32, 0.6);
  transform: translateY(-2px);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 15px;
}

.indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(218, 165, 32, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.indicator.active {
  background: #FFD700;
  transform: scale(1.2);
}

/* Mission Section */
.mission-section {
  padding: 80px 50px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2d1810 50%, #1a1a1a 75%, #0a0a0a 100%);
}

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

.mission-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: #ffffff;
  margin-bottom: 30px;
}

.mission-text {
  font-size: 1.3rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.mission-cta {
  display: inline-block;
  padding: 15px 50px;
  background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #B8860B 100%);
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.mission-cta:hover {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  transform: translateY(-2px);
}

/* Carousel Section */
.carousel-section {
  padding: 60px 0;
  position: relative;
}

.carousel-container {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousel-card {
  position: absolute;
  width: 260px;
  height: 390px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  will-change: transform;
}

.carousel-card.active {
  width: 300px;
  height: 450px;
  z-index: 10;
  box-shadow: 0 15px 30px rgba(218, 165, 32, 0.3);
  border: 2px solid rgba(218, 165, 32, 0.5);
}

.carousel-card.left-2 {
  transform: translate3d(-300px, 0, 0) scale(0.75);
  opacity: 0.2;
  z-index: 1;
}

.carousel-card.left-1 {
  transform: translate3d(-150px, 0, 0) scale(0.85);
  opacity: 0.5;
  z-index: 2;
}

.carousel-card.right-1 {
  transform: translate3d(150px, 0, 0) scale(0.85);
  opacity: 0.5;
  z-index: 2;
}

.carousel-card.right-2 {
  transform: translate3d(300px, 0, 0) scale(0.75);
  opacity: 0.2;
  z-index: 1;
}

.model-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.carousel-card:hover .model-card-image {
  transform: scale(1.01);
}

.model-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  transform: translateY(100%);
  transition: transform 0.2s ease;
}

.carousel-card:hover .model-card-overlay,
.carousel-card.active .model-card-overlay {
  transform: translateY(0);
}

.model-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.model-card-specialty {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(218, 165, 32, 0.4);
  color: #FFD700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 20;
}

.carousel-nav:hover {
  background: rgba(218, 165, 32, 0.3);
  border-color: #FFD700;
  transform: translateY(-50%) scale(1.02);
}

.carousel-nav.prev {
  left: 15px;
}

.carousel-nav.next {
  right: 15px;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  backdrop-filter: blur(5px);
  overflow-y: auto;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 95%;
  max-width: 1100px;
  margin: 20px auto;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(218, 165, 32, 0.3);
  min-height: calc(100vh - 40px);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  background: rgba(218, 165, 32, 0.2);
  border-radius: 50%;
  color: #FFD700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(218, 165, 32, 0.3);
  transform: scale(1.05);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.modal-gallery {
  position: relative;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1;
  min-height: 350px;
}

.gallery-thumbnails {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
}

.gallery-thumb {
  width: 50px;
  height: 65px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: #FFD700;
  transform: scale(1.02);
}

.modal-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(45, 45, 45, 0.9));
  backdrop-filter: blur(10px);
  overflow-y: auto;
}

.model-name {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #FFD700, #DAA520);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.model-specialty {
  font-size: 1rem;
  color: #DAA520;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.model-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cccccc;
  margin-bottom: 25px;
  font-weight: 300;
}

.model-stats {
  margin-bottom: 25px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
  font-weight: 500;
  color: #FFD700;
  font-size: 0.9rem;
}

.stat-value {
  color: #ffffff;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(218, 165, 32, 0.2);
  border: 2px solid rgba(218, 165, 32, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: rgba(218, 165, 32, 0.3);
  border-color: #FFD700;
  transform: scale(1.02);
}

/* Footer */
footer {
  padding: 60px 50px;
  background: linear-gradient(135deg, #946e41 0%, #643e19 100%);
  color: #e0e0e0;
  text-align: center;
}


.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: #ffffff;
}

.footer-text {
  font-size: 1.1rem;
  color: #2c2c2c;
  margin-bottom: 30px;
  font-weight: 300;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.footer-bottom {
  font-size: 0.85rem;
  color: #666666;
  font-weight: 300;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 30px;
  }

  nav ul {
    gap: 20px;
  }

  nav a {
    font-size: 14px;
  }

  .hero-content {
    padding: 0 30px;
    margin-top: 60px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: -2px;
  }

  .numbers,
  .models,
  .about-content,
  .services-section,
  .mission-section,
  .contact-form-section,
  .contact-hero {
    padding: 60px 30px;
  }

  .numbers-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .models-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info,
  .contact-form {
    padding: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .carousel-container {
    height: 400px;
    padding: 0 15px;
  }

  .carousel-card {
    width: 220px;
    height: 330px;
  }

  .carousel-card.active {
    width: 250px;
    height: 375px;
  }

  .carousel-card.left-2,
  .carousel-card.right-2 {
    display: none;
  }

  .carousel-card.left-1 {
    transform: translate3d(-100px, 0, 0) scale(0.8);
  }

  .carousel-card.right-1 {
    transform: translate3d(100px, 0, 0) scale(0.8);
  }

  .modal-content {
    width: 98%;
    margin: 10px auto;
    min-height: calc(100vh - 20px);
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-info {
    padding: 20px;
  }

  .model-name {
    font-size: 1.8rem;
  }

  .gallery-thumbnails {
    padding: 10px;
  }

  .gallery-thumb {
    width: 45px;
    height: 60px;
  }

  .footer-content {
    padding: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .bg-orb {
    width: 100px !important;
    height: 100px !important;
  }
}

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

    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2d1810 50%, #1a1a1a 75%, #0a0a0a 100%);
      color: #f5f5f5;
      overflow-x: hidden;
      min-height: 100vh;
    }

    /* Background Elements */
    .animated-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
    }

    .bg-orb {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(218, 165, 32, 0.3), rgba(184, 134, 11, 0.2), rgba(139, 69, 19, 0.1));
      filter: blur(1px);
      animation: float-optimized 25s infinite ease-in-out;
      opacity: 0.4;
      will-change: transform;
    }

    .bg-orb:nth-child(1) {
      width: 200px;
      height: 200px;
      top: 20%;
      left: 15%;
      animation-duration: 30s;
    }

    .bg-orb:nth-child(2) {
      width: 150px;
      height: 150px;
      top: 60%;
      right: 20%;
      animation-duration: 35s;
      animation-delay: 10s;
    }

    @keyframes float-optimized {
      0%, 100% {
        transform: translate3d(0, 0, 0);
      }
      50% {
        transform: translate3d(30px, -20px, 0);
      }
    }

    /* Custom Cursor */
    .cursor {
      position: fixed;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #DAA520;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.1s ease;
      opacity: 0;
    }

    .cursor-follower {
      position: fixed;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1px solid #DAA520;
      pointer-events: none;
      z-index: 9998;
      opacity: 0.6;
      transition: all 0.2s ease;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      padding: 20px 50px;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(218, 165, 32, 0.3);
      transition: all 0.3s ease;
    }

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

    .logo {
      font-size: 24px;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: -1px;
      background: linear-gradient(135deg, #FFD700, #DAA520, #B8860B);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .logo span {
      color: #DAA520;
    }

    /* Desktop Navigation */
    .nav-desktop {
      display: flex;
    }

    .nav-desktop ul {
      display: flex;
      list-style: none;
      gap: 40px;
    }

    .nav-desktop a {
      color: #f5f5f5;
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      transition: all 0.2s ease;
      position: relative;
    }

    .nav-desktop a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #FFD700, #DAA520);
      transition: width 0.2s ease;
    }

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

    .nav-desktop a:hover,
    .nav-desktop a.active {
      color: #FFD700;
      transform: translateY(-1px);
    }

    /* Mobile Navigation */
    .nav-mobile {
      display: none;
      position: relative;
    }

    .mobile-menu-btn {
      background: none;
      border: none;
      color: #f5f5f5;
      font-size: 24px;
      cursor: pointer;
      padding: 5px;
      transition: all 0.2s ease;
    }

    .mobile-menu-btn:hover {
      color: #FFD700;
    }

    .mobile-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(218, 165, 32, 0.3);
      border-radius: 10px;
      min-width: 200px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      margin-top: 10px;
    }

    .mobile-menu.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .mobile-menu ul {
      list-style: none;
      padding: 10px 0;
    }

    .mobile-menu a {
      display: block;
      color: #f5f5f5;
      text-decoration: none;
      padding: 12px 20px;
      font-weight: 500;
      transition: all 0.2s ease;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
      color: #FFD700;
      background: rgba(218, 165, 32, 0.1);
    }

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

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(218, 165, 32, 0.5) 0%, transparent 50%);
      z-index: 1;
    }

    .hero-content {
      text-align: center;
      position: relative;
      z-index: 2;
      max-width: 1200px;
      padding: 0 50px;
      margin-top: 80px;
    }

    .hero-title {
      font-size: clamp(3rem, 8vw, 6rem);
      font-weight: 900;
      line-height: 0.9;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: -4px;
      background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 25%, #DAA520 50%, #FFFFFF 75%, #B8860B 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: titlePulse 4s ease-in-out infinite;
    }

    @keyframes titlePulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.02);
      }
    }

    .hero-subtitle {
      font-size: clamp(1.2rem, 3vw, 2rem);
      font-weight: 300;
      color: #F5F5F5;
      margin-bottom: 60px;
      letter-spacing: 4px;
      text-transform: uppercase;
      opacity: 0.9;
    }

    .hero-cta {
      display: inline-block;
      padding: 20px 60px;
      background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #B8860B 100%);
      color: #0a0a0a;
      text-decoration: none;
      font-weight: 700;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 2px;
      border-radius: 50px;
      border: 2px solid transparent;
      transition: all 0.4s ease;
      box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4);
    }

    .hero-cta:hover {
      background: transparent;
      color: #FFD700;
      border: 2px solid #FFD700;
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
    }

    /* Numbers Section */
    .numbers {
      padding: 80px 50px;
      background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #0a0a0a 100%);
      position: relative;
    }

    .numbers-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      text-align: center;
    }

    .number-item {
      background: rgba(255, 255, 255, 0.1);
      padding: 40px 20px;
      border-radius: 20px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .number-item:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.15);
    }

    .number {
      font-size: 4rem;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .number-label {
      font-size: 1.1rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #cccccc;
    }

    /* Models Section */
    .models {
      padding: 80px 50px;
      background: linear-gradient(135deg, #544123 0%, #885839 100%);
      position: relative;
    }

    .models-header {
      max-width: 1400px;
      margin: 0 auto 60px;
      text-align: center;
    }

    .models-title {
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -3px;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .models-subtitle {
      font-size: 1.2rem;
      color: #2c2c2c;
      font-weight: 300;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

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

    .model-card {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .model-card:hover {
      transform: scale(1.03);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .model-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .model-card:hover .model-image {
      transform: scale(1.05);
    }

    .model-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
      color: #ffffff;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }

    .model-card:hover .model-overlay {
      transform: translateY(0);
    }

    .model-name {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .model-info {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 300;
    }

    /* Footer - Updated to match header style */
    footer {
      position: relative;
      padding: 20px 50px;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      border-top: 1px solid rgba(218, 165, 32, 0.3);
      color: #f5f5f5;
    }

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

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-logo {
      font-size: 20px;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: -1px;
      background: linear-gradient(135deg, #FFD700, #DAA520, #B8860B);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .footer-logo span {
      color: #DAA520;
    }

    .footer-tagline {
      font-size: 0.9rem;
      color: #cccccc;
      font-weight: 300;
    }

    .footer-links {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .footer-links a {
      color: #f5f5f5;
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.2s ease;
      position: relative;
    }

    .footer-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: linear-gradient(90deg, #FFD700, #DAA520);
      transition: width 0.2s ease;
    }

    .footer-links a:hover::after {
      width: 100%;
    }

    .footer-links a:hover {
      color: #FFD700;
      transform: translateY(-1px);
    }

    .footer-copyright {
      font-size: 0.8rem;
      color: #999;
      font-weight: 300;
    }

    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s ease;
    }

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

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      /* Hide desktop nav, show mobile nav */
      .nav-desktop {
        display: none;
      }

      .nav-mobile {
        display: block;
      }

      /* Header adjustments */
      header {
        padding: 15px 20px;
      }

      .logo {
        font-size: 20px;
      }

      /* Hero section mobile */
      .hero-content {
        padding: 0 20px;
        margin-top: 60px;
      }

      .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        letter-spacing: -2px;
        margin-bottom: 20px;
      }

      .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.5rem);
        letter-spacing: 2px;
        margin-bottom: 40px;
      }

      .hero-cta {
        padding: 15px 40px;
        font-size: 16px;
        letter-spacing: 1px;
      }

      /* Numbers section mobile */
      .numbers {
        padding: 60px 20px;
      }

      .numbers-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .number-item {
        padding: 30px 15px;
      }

      .number {
        font-size: 2.5rem;
        margin-bottom: 15px;
      }

      .number-label {
        font-size: 0.9rem;
      }

      /* Models section mobile */
      .models {
        padding: 60px 20px;
      }

      .models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .model-card {
        min-height: 400px;
      }

      /* Footer mobile */
      footer {
        padding: 20px;
      }

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

      .footer-links {
        flex-direction: column;
        gap: 15px;
      }

      .footer-links a {
        font-size: 16px;
      }

      /* Hide cursor on mobile */
      .cursor,
      .cursor-follower {
        display: none;
      }

      /* Smaller background orbs on mobile */
      .bg-orb {
        width: 100px !important;
        height: 100px !important;
      }
    }

    /* Extra small screens */
    @media (max-width: 480px) {
      .numbers-content {
        grid-template-columns: 1fr;
      }

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

      .model-card {
        min-height: 350px;
      }
    }