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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* HEADER */
.site-header {
  background: #1a1a1a;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  height: 60px;
  width: auto;
}

.header-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* BUTTONS */
.btn-primary {
  background: #c9a227;
  color: #1a1a1a;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: #a8861f;
}

.btn-secondary {
  background: transparent;
  color: #c9a227;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  border: 2px solid #c9a227;
  transition: all 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  background: #c9a227;
  color: #1a1a1a;
}

/* HERO */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  padding: 80px 0;
}

.hero h1 {
  color: #c9a227;
  font-size: 2.5rem;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero p {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* TRUST */
.trust {
  background: #1a1a1a;
  padding: 30px 0;
  color: #fff;
}

.trust ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  flex-wrap: wrap;
  margin-top: 15px;
}

.trust li {
  position: relative;
  padding-left: 25px;
}

.trust li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #c9a227;
  font-weight: bold;
}

.trust p {
  text-align: center;
}

/* SERVICES/PRODUCTS */
.services {
  padding: 60px 0;
  background: #f5f5f5;
}

.services h2, .process h2, .contact h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1a1a1a;
}

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

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  border: 1px solid #e0e0e0;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 20px 20px 10px;
  color: #1a1a1a;
}

.card p {
  padding: 0 20px 20px;
  color: #666;
}

/* WHY */
.why {
  background: #1a1a1a;
  padding: 60px 0;
  color: #fff;
}

.why h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #c9a227;
}

.why ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.why li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.why li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #c9a227;
}

/* PROCESS */
.process {
  padding: 60px 0;
  background: #f5f5f5;
}

.process ol {
  max-width: 600px;
  margin: 0 auto;
  counter-reset: step;
  list-style: none;
}

.process li {
  padding: 15px 0 15px 50px;
  position: relative;
  counter-increment: step;
}

.process li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 35px;
  height: 35px;
  background: #c9a227;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* CONTACT */
.contact {
  background: #1a1a1a;
  padding: 60px 0;
  color: #fff;
}

.contact h2 {
  color: #c9a227;
}

.contact p {
  text-align: center;
  margin-bottom: 30px;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 15px;
  border: 1px solid #444;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  background: #2a2a2a;
  color: #fff;
}

input::placeholder, textarea::placeholder {
  color: #999;
}

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

form .btn-primary {
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: #0d0d0d;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

footer p {
  margin: 5px 0;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #c9a227;
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
  background: #a8861f;
}

.social-icon svg {
  fill: #1a1a1a;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
}

.btn-whatsapp:hover {
  background: #1da851;
}

.btn-whatsapp.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* DELIVERY AREA MAP */
.delivery-area {
  padding: 60px 0;
  background: #f5f5f5;
}

.delivery-area h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.delivery-area > .container > p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
}

/* CONTACT ALT */
.contact-alt {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #444;
}

.contact-alt p {
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .trust ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .header-container {
    justify-content: center;
    text-align: center;
  }
}
