* {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 25px;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

:root {
  --logo-color: #FE7300;
  /* ======= Brand Color System ======= */
  --primary-color: #ff7b00;
  /* Vibrant food orange */
  --secondary-color: #b34700;
  /* Dark roasted orange (contrast) */
  --accent-color: #ffb347;
  /* Light orange accent for highlights */

  /* ======= Text & Background ======= */
  --background-color: #fffaf3;
  /* Warm creamy white background */
  --text-color: #2b2b2b;
  /* Deep neutral text for readability */
  --text-warning: #ff3b3b;
  /* Bold red for alerts */
  --text-success: #2ecc71;
  /* Fresh green for success messages */

  /* ======= Borders & Cards ======= */
  --border-color: #e6d5c3;
  /* Soft beige border */
  --card-background: #ffffff;
  /* Clean card background */
  --card-shadow: rgba(255, 123, 0, 0.2);
  /* Subtle orange-tinted shadow */

  /* ======= Buttons ======= */
  --button-text: #fff;
  /* White text for contrast */
  --button-cancel: #ff4d4d;
  /* Strong cancel red */
  --button-active: #ffa41b;
  /* Highlighted orange active button */
  --button-hover: #e56700;
  /* Slightly darker hover state */

  /* ======= Button Sizes ======= */
  --button-height-large: 60px;
  --button-height-medium: 40px;
  --button-height-small: 25px;
}


/* Hero */
.contact-hero {
  background: linear-gradient(0deg, #ffcfa1, #FFA13D);
  color: white;
  text-align: center;
  padding: 200px 20px 120px;
  border-radius: 0 0 80px 80px;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* Main Container */
.contact-container {
  max-width: 1000px;
  margin: -60px auto 60px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Info + Form */
.contact-info,
.contact-form {
  background: white;
  flex: 1 1 400px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
}

h2 {
  color: var(--primary-color);
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.6;
}

/* Form */
form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}

form button {
  background: var(--primary-color);
  border: none;
  color: white;
  font-size: 16px;
  padding: 14px 25px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  background: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-container {
    margin-top: -40px;
  }

  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }
}


.success-popup {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px 50px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-block;
  border: 4px solid #4CAF50;
  position: relative;
  margin-bottom: 10px;
  animation: scale 0.4s ease-in-out;
}

.checkmark_stem {
  position: absolute;
  width: 3px;
  height: 18px;
  background-color: #4CAF50;
  left: 26px;
  top: 13px;
  transform: rotate(45deg);
}

.checkmark_kick {
  position: absolute;
  width: 3px;
  height: 9px;
  background-color: #4CAF50;
  left: 17px;
  top: 27px;
  transform: rotate(-45deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes scale {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}