/* SmartMax Landing Page - Echte Branding */

/* Color Variables - SmartMax Official */
:root {
  --smartmax-red: #ed1c24;
  --smartmax-yellow: #fdd116;
  --smartmax-blue-light: #a7d9e7;
  --smartmax-gray: #58595b;
  --text-dark: #333;
  --white: #fff;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* Header - Rode balk zoals op de echte site */
.smartmax-header {
  background: var(--smartmax-red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.smartmax-header .logo {
  max-width: 150px;
  height: auto;
}

.btn-shop {
  background: var(--smartmax-yellow);
  color: var(--text-dark);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-shop:hover {
  background: #fde861;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Hero Section */
.hero-section {
  background: var(--white);
  padding: 60px 20px 50px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--smartmax-blue-light);
  margin-bottom: 40px;
  text-align: center;
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-icon {
  text-align: center;
}

.icon-circle {
  width: 120px;
  height: 120px;
  background: var(--smartmax-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: transform 0.3s ease;
}

.hero-icon:hover .icon-circle {
  transform: scale(1.05);
}

.icon-circle img {
  max-width: 60%;
  height: auto;
}

.hero-icon p {
  font-weight: 600;
  color: var(--smartmax-gray);
  font-size: 0.9rem;
  margin: 0;
}

/* Form Section */
.form-section {
  background: linear-gradient(to bottom, var(--white) 0%, #f5f5f5 100%);
  padding: 40px 20px 80px;
}

.form-container {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-title {
  color: var(--smartmax-red);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}

.form-subtitle {
  color: var(--smartmax-gray);
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}

/* Success Message */
#successMessage {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background: #d4edda;
  border: 2px solid #28a745;
}

#successMessage h3 {
  color: #155724;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

#successMessage p {
  color: #155724;
  font-size: 1.1rem;
  margin: 0;
}

.mautic-form-wrapper {
  background: var(--white);
  border-radius: 10px;
}

.mautic-form-wrapper iframe {
  width: 100%;
  min-height: 600px;
  border: none;
}

/* Footer */
.smartmax-footer {
  background: var(--smartmax-gray);
  color: var(--white);
  padding: 40px 20px 25px;
}

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

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--smartmax-red);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .smartmax-header .logo {
    max-width: 120px;
  }

  .btn-shop {
    padding: 8px 20px;
    font-size: 12px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-icons {
    gap: 30px;
  }

  .icon-circle {
    width: 100px;
    height: 100px;
  }

  .form-container {
    padding: 25px;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .mautic-form-wrapper iframe {
    min-height: 500px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 40px 15px 30px;
  }

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .hero-icons {
    gap: 25px;
  }

  .icon-circle {
    width: 90px;
    height: 90px;
  }

  .hero-icon p {
    font-size: 0.8rem;
  }

  .form-section {
    padding: 30px 15px 60px;
  }

  .form-container {
    padding: 20px;
  }

  .form-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Smooth Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-container {
  animation: fadeIn 0.6s ease-out;
}
