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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f6f9;
  color: #333;
}

/* NAV */
nav {
  background: #1a1a2e;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

nav .logo {
  color: #e94560;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav ul a:hover,
nav ul a.active {
  color: #e94560;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.15rem;
  color: #aab4be;
  max-width: 560px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-primary {
  background: #e94560;
  color: white;
}

.btn-outline {
  background: transparent;
  color: #e94560;
  border: 2px solid #e94560;
  margin-left: 12px;
}

/* FEATURES */
.section {
  padding: 70px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 48px;
  color: #1a1a2e;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card .icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.card p {
  color: #666;
  font-size: 0.93rem;
  line-height: 1.6;
}

/* FORM PAGES */
.form-wrapper {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.form-box {
  background: white;
  border-radius: 14px;
  padding: 44px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.form-box h2 {
  font-size: 1.7rem;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.form-box .subtitle {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dde1ea;
  border-radius: 7px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  background: #fafbfc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #e94560;
  background: white;
}

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

.form-footer {
  margin-top: 10px;
  font-size: 0.88rem;
  color: #888;
  text-align: center;
}

.form-footer a {
  color: #e94560;
  text-decoration: none;
  font-weight: 600;
}

.alert {
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 0.9rem;
  margin-bottom: 18px;
  display: none;
}

.alert-success {
  background: #e6f9f0;
  color: #1a7a4a;
  border: 1px solid #a3e4c1;
}

.alert-error {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #f5c6c1;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
  nav { padding: 0 16px; }
  nav ul { gap: 14px; }
  .hero h1 { font-size: 1.8rem; }
  .form-box { padding: 28px 20px; }
}

.contact-info h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.contact-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #444;
  font-size: 0.95rem;
}

.contact-item span.ci-icon {
  font-size: 1.3rem;
}

/* FOOTER */
footer {
  background: #1a1a2e;
  color: #888;
  text-align: center;
  padding: 24px;
  font-size: 0.88rem;
  margin-top: 60px;
}

footer a {
  color: #e94560;
  text-decoration: none;
}
