:root {
  --primary: #c4a010;
  --dark: #0a1a2a;
  --light: #f9f9f9;
  --white: #ffffff;
  --transition: 0.4s ease;
  --shadow: 0 10px 25px rgba(0,0,0,0.1);
  --radius: 16px;
}

/* GLOBAL */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

/* HERO */
.sp-hero {
  position: relative;
  height: 70vh;
  background: url('../img/aboutus/15.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  animation: fadeInHero 1.5s ease forwards;
}

.sp-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 42, 0.65);
}

.sp-hero .hero-inner {
  position: relative;
  max-width: 700px;
  padding: 0 20px;
  animation: slideUp 1.5s ease forwards;
}

.sp-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.sp-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* INFO CARDS */
.sp-info {
  padding: 80px 6% 40px;
  background: var(--white);
  animation: fadeIn 1.2s ease forwards;
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.sp-card {
  background: var(--light);
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.sp-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.sp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* FORM SECTION */
.sp-form-section {
  background: var(--white);
  padding: 80px 6%;
  color: var(--white);
  text-align: center;
  animation: fadeIn 1.4s ease forwards;
}

.form-box {
  background: rgba(255,255,255,0.1);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.form-box h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, select, textarea {
  padding: 0.9rem 1rem;
  border: none;
  border-radius: var(--radius);
  background: rgba(245,245,245,0.9);
  font-family: inherit;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(196, 160, 16, 0.4);
}

button {
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

#message {
  margin-top: 1rem;
  background: #e6ffed;
  color: #166534;
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 500;
}

.hidden {
  display: none;
}

/* ANIMATIONS */
@keyframes fadeInHero {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sp-hero h1 {
    font-size: 2.2rem;
  }
  .form-box {
    padding: 2rem 1.5rem;
  }
}
