/**
 * Styles globaux pour MO DEV
 * Design moderne avec animations GSAP
 */

/* Reset et variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0a0e1a;
  --bg-darker: #050810;
  --gold: #ffc940;
  --gold-light: #fff3a0;
  --blue: #1e90ff;
  --blue-dark: #0066cc;
  --text: #cdd9f0;
  --text-dim: #8899bb;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
  opacity: 0.5;
}

/* Loading screen */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  flex-direction: column;
  gap: 30px;
}

.loader-logo {
  font-size: 4rem;
  font-weight: 900;
  font-family: 'Arial Black', Arial, sans-serif;
}

.loader-logo .bracket {
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,.6);
}

.loader-logo .mo {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-logo .dev {
  color: var(--blue);
  text-shadow: 0 0 20px rgba(30,144,255,.5);
}

.loader-bar {
  width: 300px;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  border-radius: 10px;
  box-shadow: 0 0 20px var(--gold);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(180deg, var(--bg-darker) 0%, transparent 100%);
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'Arial Black', Arial;
  text-decoration: none;
  display: inline-block;
}

.logo .bracket { color: #fff; }
.logo .mo {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo .dev { color: var(--blue); }

nav {
  display: flex;
  gap: 40px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--gold);
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section with 3D effect */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 60px 60px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(30,144,255,0.1) 0%, transparent 50%);
  z-index: 0;
}

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

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  opacity: 0;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--blue));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--text-dim);
  margin-bottom: 50px;
  opacity: 0;
}

.hero-cta {
  display: inline-block;
  padding: 18px 45px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  margin: 10px;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transition: left 0.3s ease;
  z-index: -1;
}

.hero-cta:hover {
  color: var(--bg-dark);
  box-shadow: 0 0 30px rgba(255, 201, 64, 0.5);
}

.hero-cta:hover::before {
  left: 0;
}

.hero-cta.secondary {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-cta.secondary::before {
  background: var(--blue);
}

.hero-cta.secondary:hover {
  color: #fff;
  box-shadow: 0 0 30px rgba(30, 144, 255, 0.5);
}

/* Floating particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
  box-shadow: 0 0 10px var(--gold);
}

/* Section commune */
.section {
  min-height: 100vh;
  padding: 120px 60px;
  position: relative;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 80px;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Projects Grid */
.projects {
  padding: 120px 60px;
  background: var(--bg-darker);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.project-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(255, 201, 64, 0.2);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--bg-dark);
}

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

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

.project-info {
  padding: 30px;
}

.project-info h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.project-info p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tag {
  padding: 6px 14px;
  background: rgba(30, 144, 255, 0.1);
  border: 1px solid rgba(30, 144, 255, 0.3);
  border-radius: 20px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
}

.project-links {
  display: flex;
  gap: 15px;
}

.project-link {
  padding: 10px 25px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.project-link.primary {
  background: var(--gold);
  color: var(--bg-dark);
}

.project-link.primary:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 30px rgba(255, 201, 64, 0.4);
  transform: translateY(-2px);
}

.project-link.secondary {
  border: 2px solid var(--blue);
  color: var(--blue);
}

.project-link.secondary:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.4);
  transform: translateY(-2px);
}

/* Projects 3D Slider */
.projects-slider-container {
  position: relative;
  max-width: 2400px;
  margin: 60px auto;
  padding: 0 60px;
  overflow: visible;
}

.projects-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 800px;
  perspective: 2000px;
  cursor: grab;
  user-select: none;
}

.project-slide {
  position: absolute;
  width: 700px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
}

.project-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Position des slides: gauche, centre, droite */
.project-slide.left {
  transform: translateX(-850px) scale(0.85) rotateY(20deg);
  z-index: 1;
  opacity: 0.7;
  filter: brightness(0.7);
}

.project-slide.center {
  transform: translateX(0) scale(1) rotateY(0deg);
  z-index: 3;
  opacity: 1;
  filter: brightness(1);
}

.project-slide.right {
  transform: translateX(850px) scale(0.85) rotateY(-20deg);
  z-index: 1;
  opacity: 0.7;
  filter: brightness(0.7);
}

.project-slide.hidden-left {
  transform: translateX(-1300px) scale(0.6);
  opacity: 0;
}

.project-slide.hidden-right {
  transform: translateX(1300px) scale(0.6);
  opacity: 0;
}

.project-card-3d {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Effet de brillance qui suit la souris */
.project-card-3d::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 201, 64, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.project-slide.center .project-card-3d:hover::before {
  opacity: 1;
}

.project-card-3d .project-image {
  height: 350px;
  overflow: hidden;
  position: relative;
}

.project-card-3d .project-image img,
.project-card-3d .project-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.project-card-3d .project-info {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.project-slide.center .project-card-3d {
  position: relative;
  border-color: var(--gold);
  box-shadow: 0 30px 80px rgba(255, 201, 64, 0.3),
              0 0 40px rgba(255, 201, 64, 0.1);
  transform: translateZ(50px);
}

/* Bordure animée dorée sur la carte centrale */
.project-slide.center .project-card-3d::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
    var(--gold),
    rgba(255, 201, 64, 0.5),
    var(--blue),
    rgba(255, 201, 64, 0.5),
    var(--gold)
  );
  background-size: 300% 300%;
  border-radius: 21px;
  z-index: -1;
  opacity: 0;
  animation: gradient-rotate 3s ease infinite;
  transition: opacity 0.5s ease;
}

.project-slide.center .project-card-3d:hover::after {
  opacity: 0.6;
}

@keyframes gradient-rotate {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.project-slide.center .project-card-3d:hover {
  transform: translateZ(70px) scale(1.02);
  box-shadow: 0 40px 100px rgba(255, 201, 64, 0.4),
              0 0 60px rgba(255, 201, 64, 0.2);
}

/* Particules flottantes autour de la carte centrale */
.project-slide.center::before,
.project-slide.center::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 4s infinite ease-in-out;
  box-shadow: 0 0 10px var(--gold);
}

.project-slide.center::before {
  top: 20%;
  left: -30px;
  animation-delay: 0s;
}

.project-slide.center::after {
  top: 60%;
  right: -30px;
  animation-delay: 2s;
}

@keyframes float-particle {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-30px) scale(1.5);
  }
}

/* Système de particules avancé */
.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 4s infinite ease-in-out;
  box-shadow: 0 0 8px var(--gold), 0 0 12px rgba(255, 201, 64, 0.5);
}

@keyframes particle-float {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  20% {
    opacity: 0.6;
    transform: translateY(-15px) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-40px) scale(1.3);
  }
  80% {
    opacity: 0.4;
    transform: translateY(-60px) scale(0.8);
  }
}

.project-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,201,64,0.2), rgba(30,144,255,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 900;
}

/* Navigation buttons */
.slider-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  left: 0;
  right: 0;
}

.slider-btn {
  pointer-events: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 201, 64, 0.1);
  border: 2px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 201, 64, 0.4);
}

.slider-btn:active {
  transform: scale(0.95);
}

.slider-btn.prev {
  margin-left: -30px;
}

.slider-btn.next {
  margin-right: -30px;
}

/* Pagination dots */
.slider-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 201, 64, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background: rgba(255, 201, 64, 0.5);
  transform: scale(1.2);
}

.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(255, 201, 64, 0.6);
  transform: scale(1.3);
}

/* Responsive slider */
@media (max-width: 1400px) {
  .projects-slider-container {
    padding: 0 80px;
  }

  .project-slide {
    width: 800px;
  }

  .project-slide.left {
    transform: translateX(-960px) scale(0.8) rotateY(20deg);
  }

  .project-slide.right {
    transform: translateX(960px) scale(0.8) rotateY(-20deg);
  }

  .projects-slider {
    height: 650px;
  }
}

@media (max-width: 1024px) {
  .projects-slider-container {
    padding: 0 60px;
  }

  .project-slide {
    width: 700px;
  }

  .project-slide.left,
  .project-slide.right {
    transform: scale(0.75);
    opacity: 0.4;
  }

  .projects-slider {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .projects-slider-container {
    padding: 0 20px;
  }

  .project-slide {
    width: 100%;
    max-width: 500px;
  }

  .project-slide.left,
  .project-slide.right {
    display: none;
  }

  .project-slide.center {
    transform: translateX(0) scale(1);
  }

  .projects-slider {
    height: 550px;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
  }
}

/* Contact Section */
.contact {
  min-height: 100vh;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255,201,64,0.05) 0%, transparent 50%);
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.contact h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-intro {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 60px;
  line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 201, 64, 0.2);
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 25px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
}

.pricing-card li {
  padding: 8px 0;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.pricing-card li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  margin-right: 10px;
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(255, 201, 64, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(255, 201, 64, 0.1);
}

/* Fix pour les options du select */
.form-group select option {
  background: var(--bg-dark);
  color: var(--text);
  padding: 10px;
}

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

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ff4444;
}

.error-message,
.field-error {
  color: #ff6666;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
  min-height: 1.2em;
}

.form-group.valid input,
.form-group.valid select,
.form-group.valid textarea {
  border-color: #4caf50;
}

.char-count {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 5px;
}

.success-message {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 10px;
  color: var(--bg-dark);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 15px 40px rgba(255, 201, 64, 0.4); */
}

.btn-submit:active {
  transform: translateY(-1px);
}

/* Footer */
footer {
  padding: 40px 60px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  background: var(--bg-darker);
}

/* Utilities */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 968px) {
  header {
    padding: 20px 30px;
  }

  nav {
    gap: 20px;
  }

  .hero {
    padding: 80px 30px 60px;
  }

  .section {
    padding: 80px 30px;
  }

  .projects {
    padding: 80px 30px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 80px 30px;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  body {
    cursor: auto;
  }

  .cursor, .cursor-follower {
    display: none;
  }
}

@media (max-width: 640px) {
  header {
    padding: 15px 20px;
  }

  nav {
    gap: 15px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 70px 20px 40px;
  }

  .hero-cta {
    display: block;
    margin: 10px auto;
    max-width: 280px;
  }

  .section {
    padding: 60px 20px;
  }

  .contact-form {
    padding: 25px 20px;
  }
}
