@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #e65100;
  --text-dark: #333;
  --text-gray: #555;
  --bg-light: #f9f9f9;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: #fff;
  margin: 0;
}

.main-content {
  padding-bottom: 60px;
}

/* Notifications */
.notification {
  text-align: center;
  padding: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

.notification.success {
  background-color: #d4edda;
  color: #155724;
  border-bottom: 1px solid #c3e6cb;
}

.notification.error {
  background-color: #f8d7da;
  color: #721c24;
  border-bottom: 1px solid #f5c6cb;
}

/* Hero Section */
.contact-hero {
  background-color: var(--bg-light);
  text-align: center;
  padding: 60px 20px 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid #eee;
}

.contact-hero h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-gray);
  line-height: 1.6;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Info Cards */
.info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  padding: 25px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight-card {
  background-color: #fffbf7; /* Slight orange tint */
  border-color: #ffe0b2;
}

.info-card h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.info-card p {
  color: var(--text-gray);
  line-height: 1.5;
  margin: 5px 0;
}

.info-card a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.info-card a:hover {
  color: var(--primary-color);
}

/* Form Styling */
.form-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-wrapper h3 {
  margin-top: 0;
  color: var(--text-dark);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box; /* Important for width: 100% */
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background-color: #bf4300;
}

.alert-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
