/* ========================
   Global Theme & Reset
======================== */
:root {
  --primary: #ff6a00;     /* Brand Orange */
  --primary-dark: #e65c00;
  --bg-dark: #111;
  --bg-card: #1a1a1a;
  --text-light: #f1f1f1;
  --text-dark: #000;
  --border: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================
   Header
======================== */
header {
  background: linear-gradient(270deg, var(--primary), var(--primary-dark), var(--primary));
  background-size: 600% 600%;
  animation: gradientFlow 12s ease infinite;
  color: var(--text-dark);
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

header h1 {
  font-size: 2.8rem;
  margin-bottom: 8px;
  animation: fadeInDown 2s ease-in-out;
}

header p {
  font-size: 1.2rem;
  font-weight: 500;
  animation: fadeInUp 2s ease-in-out;
}

/* ========================
   Navigation
======================== */
nav {
  background-color: #000;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
}

nav a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background: var(--primary);
  transition: width 0.3s;
  margin: auto;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* ========================
   Sections
======================== */
section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
  animation: fadeIn 1.2s ease;
}

h2 {
  color: var(--primary);
  margin-bottom: 25px;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.5px;
  animation: pulseGlow 3s infinite;
}

/* ========================
   Services Cards
======================== */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 25px;
  width: 270px;
  height: 280px;
  box-shadow: 0 3px 12px rgba(255, 106, 0, 0.15);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: floatCard 6s ease-in-out infinite;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.35);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.card p {
  flex-grow: 1;
  font-size: 0.95rem;
  color: #ccc;
}

/* ========================
   Buttons
======================== */
.btn {
  margin-top: 18px;
  background: var(--primary);
  color: var(--text-dark);
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  animation: pulseButton 2.5s infinite;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ========================
   Contact Section
======================== */
.contact {
  text-align: center;
  margin-top: 25px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ========================
   Footer
======================== */
footer {
  background-color: #000;
  color: var(--primary);
  text-align: center;
  padding: 22px;
  margin-top: 50px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-top: 1px solid var(--border);
}

/* ========================
   Links
======================== */
a {
  color: var(--primary);
  transition: color 0.3s ease;
  text-decoration: none; 
}

a:hover {
  color: #fff;
}



/* ========================
   Animations
======================== */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 6px rgba(255, 106, 0, 0.6); }
  50% { text-shadow: 0 0 14px rgba(255, 106, 0, 0.9); }
}

@keyframes pulseButton {
  0%, 100% { box-shadow: 0 0 6px rgba(255,106,0,0.5); }
  50% { box-shadow: 0 0 14px rgba(255,106,0,0.9); }
}



/* ========================
   Payment Form Styles
   Added: 25 Sep 2025
======================== */
.payment-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 35px;
  max-width: 500px;
  margin: 40px auto;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.2);
  animation: fadeIn 1.2s ease;
}

.payment-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.payment-form label {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 6px;
}

.payment-form select,
.payment-form input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #111;
  color: var(--text-light);
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.payment-form select:focus,
.payment-form input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 8px rgba(255, 106, 0, 0.6);
}

.payment-form button {
  align-self: center;
  width: 60%;
}
