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

html, body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo a {
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.logo-accent {
  color: #ff6b35;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 2px;
  margin-top: -2px;
}

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

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff6b35;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b35;
  transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.btn-secondary:hover {
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Layout */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #ff6b35 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grid {
  display: grid;
  gap: 30px;
}

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

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

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

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-accent {
  background: linear-gradient(135deg, #ff6b35 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  padding: 120px 0 80px;
  text-align: center;
  margin-top: 70px;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1.3rem;
  color: #ccc;
}

/* Services */
.service-card {
  text-align: center;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ff6b35;
}

/* Projects */
.project-card {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.project-content {
  padding: 25px;
}

.project-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff6b35;
}

.project-status {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 15px;
  position: absolute;
  top: 15px;
  right: 15px;
}

.project-status.released {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.project-status.in-development {
  background: rgba(255, 107, 53, 0.9);
  color: white;
}

.project-status.upcoming {
  background: rgba(59, 130, 246, 0.9);
  color: white;
}

/* Features */
.feature {
  text-align: center;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ff6b35;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
}

/* About Page */
.about-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ff6b35;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ccc;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-section {
  background: rgba(20, 20, 20, 0.3);
}

.team-member {
  display: flex;
  gap: 25px;
  background: rgba(20, 20, 20, 0.8);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #ff6b35;
}

.member-role {
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 15px;
}

.mission-item {
  text-align: center;
  padding: 30px;
  background: rgba(20, 20, 20, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.mission-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ff6b35;
}

/* Services Page */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.service-detail.reverse {
  grid-template-columns: 400px 1fr;
}

.service-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #ff6b35;
}

.service-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #ccc;
}

.service-features {
  display: grid;
  gap: 25px;
}

.feature h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #3b82f6;
}

.service-types {
  display: grid;
  gap: 25px;
  margin-bottom: 30px;
}

.type-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #3b82f6;
}

.bodywork-models {
  margin-top: 30px;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.model-category {
  background: rgba(20, 20, 20, 0.5);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.model-category h4 {
  color: #ff6b35;
  margin-bottom: 15px;
}

.model-category ul {
  list-style: none;
}

.model-category li {
  padding: 5px 0;
  color: #ccc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.model-category li:last-child {
  border-bottom: none;
}

.service-image {
  border-radius: 12px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alt-section {
  background: rgba(20, 20, 20, 0.3);
}

/* Projects Page */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.project-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.project-card.featured .project-image {
  height: 100%;
}

.project-platform {
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.project-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin: 20px 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-label {
  color: #888;
  font-size: 0.9rem;
}

.detail-item span:last-child {
  color: #ff6b35;
  font-weight: 500;
}

.project-description {
  color: #ccc;
  line-height: 1.6;
  margin-top: 20px;
}

.bodywork-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.bodywork-category {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 8px;
}

.bodywork-category h4 {
  color: #ff6b35;
  margin-bottom: 10px;
  font-size: 1rem;
}

.bodywork-category ul {
  list-style: none;
}

.bodywork-category li {
  padding: 3px 0;
  color: #ccc;
  font-size: 0.9rem;
}

.released-section {
  background: rgba(20, 20, 20, 0.3);
}

.upcoming-section {
  background: rgba(20, 20, 20, 0.5);
}

/* Contact Page */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #ff6b35;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 40px;
}

.contact-details {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.3rem;
  color: #ff6b35;
  margin-bottom: 5px;
}

.contact-item p {
  color: #ccc;
  margin: 0;
}

.services-overview {
  background: rgba(20, 20, 20, 0.5);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-overview h3 {
  color: #ff6b35;
  margin-bottom: 20px;
}

.services-overview ul {
  list-style: none;
  padding: 0;
}

.services-overview li {
  padding: 8px 0;
  color: #ccc;
  position: relative;
  padding-left: 25px;
}

.services-overview li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

.contact-form-section {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: fit-content;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #ff6b35;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

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

.form-group select {
  cursor: pointer;
}

/* Footer */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 30px;
}

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

.footer-section h4 {
  color: #ff6b35;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ff6b35;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .page-hero h1 {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .team-member {
    flex-direction: column;
    text-align: center;
  }
  
  .member-image {
    align-self: center;
  }
  
  .service-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-detail.reverse {
    grid-template-columns: 1fr;
  }
  
  .models-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .project-card.featured {
    grid-template-columns: 1fr;
  }
  
  .project-details {
    grid-template-columns: 1fr;
  }
  
  .bodywork-list {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-form-section {
    padding: 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

.project-image img.zoom-out-hover {
  transform: scale(3);               /* Start zoomed out (see more) */
  object-fit: contain;                 /* Make sure full image fits */
  transition: transform 0.5s ease;     /* Smooth transition */
}

.project-card:hover .project-image img.zoom-out-hover {
  transform: scale(1.2);               /* Zoom in slightly on hover */
}
