/* Mad Men-inspired, elegant, modern style */
body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #181818;
  color: #f5f5f5;
  line-height: 1.6;
}
.mmm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1a1a;
  padding: 1.2em 2em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.mmm-logo {
  height: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
nav a {
  color: #f5f5f5;
  text-decoration: none;
  margin: 0 1.2em;
  font-weight: bold;
  font-size: 1.1em;
  letter-spacing: 1px;
  transition: color 0.2s;
}
nav a:hover {
  color: #e63946;
}
.mmm-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: linear-gradient(120deg, #232526 0%, #414345 100%);
  overflow: hidden;
}
.mmm-hero-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.35;
  z-index: 1;
}
.mmm-hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  background: rgba(24,24,24,0.7);
  padding: 2em 2.5em;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.mmm-hero-text h1 {
  font-size: 3em;
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 4px;
  color: #e63946;
  margin-bottom: 0.2em;
}
.mmm-hero-text h2 {
  font-size: 1.7em;
  color: #fff;
  font-weight: 300;
  margin-bottom: 0.7em;
}
.mmm-hero-text p {
  font-size: 1.2em;
  color: #f5f5f5;
}
.mmm-services {
  background: linear-gradient(120deg, #222 60%, #ffd700 100%);
  padding: 3em 1em 2em 1em;
  text-align: center;
}
.mmm-services h2 {
  font-size: 2.2em;
  color: #e63946;
  margin-bottom: 1.5em;
}
.mmm-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}
.mmm-service {
  background: #181818;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  padding: 2em 1.5em;
  max-width: 260px;
  min-width: 200px;
  flex: 1 1 220px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mmm-service:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(230,57,70,0.18);
}
.mmm-service h3 {
  color: #fff;
  font-size: 1.3em;
  margin-bottom: 0.5em;
  font-weight: 600;
}
.mmm-service p {
  color: #ccc;
  font-size: 1em;
}
.mmm-work {
  background: linear-gradient(120deg, #191919 60%, #43a047 100%);
  padding: 3em 1em 2em 1em;
  text-align: center;
}
.mmm-work h2 {
  color: #e63946;
  font-size: 2em;
  margin-bottom: 1.2em;
}
.mmm-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
}
.mmm-gallery img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mmm-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(230,57,70,0.18);
}
.mmm-contact {
  background: linear-gradient(120deg, #222 60%, #25d366 100%);
  padding: 3em 1em 2em 1em;
  text-align: center;
}
.mmm-contact h2 {
  color: #e63946;
  font-size: 2em;
  margin-bottom: 0.7em;
}
.mmm-contact-details {
  margin-bottom: 1.5em;
  color: #fff;
  font-size: 1.1em;
}
.mmm-contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  max-width: 400px;
  margin: 0 auto;
}
.mmm-contact-form input,
.mmm-contact-form textarea {
  width: 100%;
  padding: 0.9em 1em;
  border: none;
  border-radius: 8px;
  background: #181818;
  color: #f5f5f5;
  font-size: 1em;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  resize: none;
}
.mmm-contact-form textarea {
  min-height: 90px;
}
.mmm-contact-form button {
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9em 2.2em;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(230,57,70,0.18);
  transition: background 0.2s, transform 0.2s;
}
.mmm-contact-form button:hover {
  background: #b71c1c;
  transform: scale(1.04);
}
.mmm-footer {
  background: #181818;
  color: #aaa;
  text-align: center;
  padding: 1.2em 0;
  font-size: 1em;
  letter-spacing: 1px;
}
.mmm-highlight {
  color: #222;
  background: linear-gradient(90deg, #ffd700 0%, #ffecb3 100%);
  padding: 0.1em 0.4em;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.08em;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.mmm-videos {
  margin-top: 2em;
  text-align: center;
}
.mmm-videos h3 {
  color: #43a047;
  font-size: 1.3em;
  margin-bottom: 1em;
  letter-spacing: 1px;
}
.mmm-video-sample {
  width: 90%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(67,160,71,0.18);
  margin-bottom: 1.5em;
  border: 3px solid #ffd700;
  background: #222;
}
.mmm-video-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  margin-top: 1.5em;
}
.mmm-video-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 350px;
  width: 100%;
}
.mmm-video-caption {
  margin-top: 0.7em;
  color: #fff;
  background: #e63946;
  padding: 0.4em 1em;
  border-radius: 8px;
  font-size: 1.08em;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(230,57,70,0.18);
  text-align: center;
}
.mmm-contact-details a.mmm-whatsapp-btn {
  display: inline-block;
  margin-top: 1em;
  background: #25d366;
  color: #fff;
  font-weight: bold;
  padding: 0.8em 2em;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  box-shadow: 0 2px 12px rgba(37,211,102,0.18);
  transition: background 0.2s, transform 0.2s;
}
.mmm-contact-details a.mmm-whatsapp-btn:hover {
  background: #128c7e;
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .mmm-services-list, .mmm-gallery {
    flex-direction: column;
    gap: 1.2em;
  }
  .mmm-header {
    flex-direction: column;
    gap: 1em;
    padding: 1em;
  }
  .mmm-video-list {
    flex-direction: column;
    gap: 1.2em;
  }
}
@media (max-width: 600px) {
  .mmm-hero-text h1 {
    font-size: 2em;
  }
  .mmm-hero-text {
    padding: 1.2em 0.7em;
  }
  .mmm-logo {
    height: 40px;
  }
  .mmm-gallery img {
    width: 98vw;
    height: 140px;
  }
} 