* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --cream: #faf8f5;
  --soft-green: #6b8c6e;
  --dark: #1a1a1a;
  --gray: #6b6b6b;
  --light-gray: #e8e8e8;
  --accent: #c49a6c;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--dark);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--soft-green);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--dark);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.mobile-menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 0;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--soft-green);
  color: white;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--soft-green);
}

.hero p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 450px;
}

.btn-primary {
  background: var(--dark);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--soft-green);
  transform: translateY(-2px);
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  height: 500px;
}

/* STATS */
.stats {
  padding: 80px 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--soft-green);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
}

/* MENU */
.menu {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--gray);
  font-size: 16px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.menu-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-info {
  padding: 20px;
}

.menu-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.menu-info p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--soft-green);
}

/* ABOUT */
.about {
  padding: 100px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  height: 450px;
  object-fit: cover;
}

.about h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.about p {
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature i {
  width: 24px;
  color: var(--soft-green);
  font-size: 18px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testi-card {
  background: white;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stars {
  color: #ffb800;
  margin-bottom: 16px;
}

.testi-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--soft-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.testi-name {
  font-weight: 600;
  font-size: 14px;
}

.testi-role {
  font-size: 12px;
  color: var(--gray);
}

/* ORDER */
.order {
  padding: 100px 0;
  background: white;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--soft-green);
}

.contact-text strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-text span {
  font-size: 14px;
  color: var(--gray);
}

.order-form {
  background: var(--cream);
  padding: 40px;
  border-radius: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.socials a:hover {
  background: var(--soft-green);
}

.footer-col h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--soft-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links, .nav-btn {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-grid, .about-grid, .order-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .stats-grid, .menu-grid, .testi-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .order-form {
    padding: 24px;
  }
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Full Image Team Styles */
.team-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team-card-full {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s;
  background: white;
}

.team-card-full:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

.team-image-full {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.team-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card-full:hover .team-image-full img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent);
  color: white;
  padding: 20px;
  text-align: center;
}

.team-name-full {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
}

.team-position-full {
  font-size: 13px;
  color: var(--soft-green);
  font-weight: 600;
  margin-bottom: 6px;
}

.team-skill-full {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.team-experience-full {
  font-size: 11px;
  color: #ffd700;
  display: inline-block;
  background: rgba(0,0,0,0.5);
  padding: 3px 10px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .team-grid-full {
    grid-template-columns: 1fr;
  }
  
  .team-image-full {
    height: 300px;
  }
}