/* ================= ROOT VARIABLES ================= */
:root {
  --primary: #6a5af9;
  --accent: #e60073;
  --bg: #f5f6ff;
  --white: #ffffff;
  --text: #333333;
  --radius: 14px;
  --shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= RESET (VALID CSS) ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* ================= HEADER ================= */
header {
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  max-width: 160px;
  height: auto;
}

/* ================= NAV ================= */
.nav-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  margin: 8px 12px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
}

nav a:hover {
  color: var(--accent);
}

/* ================= HERO ================= */
#hero {
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

#hero h1 {
  font-size: 3rem;
}

#hero h2 {
  font-size: 1.8rem;
  margin-top: 10px;
}

#hero p {
  margin: 20px 0;
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: #ffffff;
  color: var(--accent);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= VIDEO ================= */
.video-gallery h2 {
  text-align: center;
  margin-bottom: 20px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
  max-width: 900px;      /* ideal laptop width */
  margin: 0 auto; 
}


.video-gallery {
  text-align: center;
}


@media (min-width: 1440px) {
  .video-gallery .video-wrapper {
    max-width: 1000px;
  }
}

/* ================= SECTIONS ================= */
section {
  padding: 60px 0;
}

section h3 {
  text-align: center;
  margin-bottom: 30px;
}

/* ================= CARDS ================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.card h4 {
  color: var(--accent);
  margin-bottom: 10px;
}

.card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* ================= FOOTER ================= */
footer {
  background: var(--accent);
  color: #ffffff;
  text-align: center;
  padding: 24px 16px;
  border-radius: 30px 30px 0 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {

  header .container {
    flex-direction: column;
    align-items: center;
  }

  .nav-container {
    justify-content: center;
  }

  #hero {
    padding: 70px 20px;
  }

  #hero h1 {
    font-size: 2rem;
  }

  #hero h2 {
    font-size: 1.3rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1320px;
  }
}

/* ================= MOBILE NAV PROPORTION FIX ================= */
@media (max-width: 767px) {

  /* Header stack */
  header .container {
    flex-direction: column;
    align-items: center;
  }

  /* Neutralize inner nav container width on mobile */
  nav .container {
    max-width: 100%;
    padding: 0;
  }

  /* Make nav links evenly spaced */
  .nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  nav a {
    margin: 6px 8px;
    padding: 6px 10px;
    font-size: 0.95rem;
    white-space: nowrap;
  }
}


/* ================= CONTACT FORM ENHANCEMENT ================= */

.support-highlight {
  background: linear-gradient(135deg, #fff0f6, #f5f6ff);
  padding: 80px 0;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h3 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.support-form {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.support-form .form-group {
  margin-bottom: 18px;
}

.support-form label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.support-form input,
.support-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.8px solid #ddd;
  font-family: inherit;
}

.support-form input:focus,
.support-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 6px rgba(106, 90, 249, 0.25);
}

.privacy-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

/* ================= MOBILE TWEAKS ================= */
@media (max-width: 767px) {
  .support-highlight {
    padding: 60px 0;
  }

  .form-header h3 {
    font-size: 1.6rem;
  }

  .support-form {
    padding: 24px;
  }
}


