/* ===========================
   GLOBAL RESET & BASE
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(120deg, #232526 0%, #414345 100%);
  color: #f5f5f5;
  min-height: 100vh;
  transition: background 0.5s;
}

/* ===========================
   CONTACT FORM — FIXED ONLY
=========================== */
.contact-form {
  max-width: 600px;
  margin: 0 auto 4rem auto;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px #23252688;
}

.contact-form h2 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fffbe6;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.12);
  color: #fffbe6;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255,255,255,0.18);
  transform: scale(1.02);
}

.contact-form textarea {
  min-height: 150px;
  resize: none;
}

.contact-form button {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #ffd700 60%, #ff8c00 100%);
  color: #232526;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px #ffd70088;
  background: linear-gradient(90deg, #ff8c00 60%, #ffd700 100%);
  color: #232526;
}

/* ===========================
   NAVIGATION — GLASS EFFECT
=========================== */
.site-nav {
  background: rgba(34, 34, 54, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffd700;
  text-shadow: 0 2px 12px #ff8c00;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffd700;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 30px;
  transition: background 0.3s, color 0.3s;
}

.nav-links a:hover,
.nav-links a:focus {
  background: linear-gradient(90deg, #ffd700 60%, #ff8c00 100%);
  color: #232526;
  box-shadow: 0 2px 12px #ffd70044;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 0;
  background: rgba(34,34,54,0.95);
  border-radius: 12px;
  box-shadow: 0 4px 24px #23252688;
  min-width: 180px;
  padding: 1rem 0;
  z-index: 10;
}

.dropdown-menu li {
  padding: 0.5rem 1.5rem;
}

.dropdown-menu a {
  color: #ffd700;
  font-size: 1rem;
}

.dropdown-menu a:hover {
  color: #ff8c00;
}

/* ===========================
   HERO — GLASS & GRADIENT
=========================== */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #232526cc 0%, #ffd70033 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 3rem 2rem;
  background: rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 8px 32px #23252699;
  backdrop-filter: blur(8px);
  animation: fadeInUp 1.2s;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
  text-shadow: 0 6px 24px #ff8c0088;
}

.hero p {
  font-size: 1.3rem;
  color: #fffbe6;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px #23252688;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn {
  background: linear-gradient(90deg, #ffd700 60%, #ff8c00 100%);
  color: #232526;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px #ffd70044;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.btn.ghost {
  background: none;
  color: #ffd700;
  border: 2px solid #ffd700;
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 32px #ffd70088;
  background: linear-gradient(90deg, #ff8c00 60%, #ffd700 100%);
  color: #232526;
}

/* ===========================
   CARDS — GLASSMORPHISM
=========================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin: 0 auto;
  max-width: 1200px;
  padding: 3rem 2rem;
}

.card {
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  box-shadow: 0 8px 32px #23252644;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s, box-shadow 0.4s;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #232526cc 0%, #ffd70033 100%);
  z-index: 1;
}

.card h3,
.card p,
.card .link {
  position: relative;
  z-index: 2;
}

.card h3 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 0.7rem;
  font-weight: 700;
  text-shadow: 0 2px 8px #23252688;
}

.card p {
  color: #fffbe6;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.card .link {
  color: #ff8c00;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: underline;
  transition: color 0.3s;
}

.card .link:hover {
  color: #ffd700;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 48px #ffd70044;
}

/* ===========================
   FOOTER — MODERN GRID
=========================== */
.site-footer {
  background: linear-gradient(90deg, #232526 60%, #ffd70022 100%);
  color: #fffbe6;
  padding: 3rem 0 1.5rem 0;
  border-top: 2px solid #ffd700;
  box-shadow: 0 -4px 24px #23252644;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding: 0 2rem;
}

.site-footer h4 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.site-footer p,
.site-footer a,
.foot-legal {
  color: #fffbe6;
  font-size: 1rem;
}

.foot-links {
  list-style: none;
  padding: 0;
}

.foot-links li {
  margin-bottom: 0.7rem;
}

.foot-links a {
  color: #ffd700;
  transition: color 0.3s;
}

.foot-links a:hover {
  color: #ff8c00;
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.newsletter input[type="email"] {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: #fffbe6;
  color: #232526;
}

.newsletter button {
  padding: 0.6rem 1.3rem;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #ffd700 60%, #ff8c00 100%);
  color: #232526;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.newsletter button:hover {
  background: linear-gradient(90deg, #ff8c00 60%, #ffd700 100%);
  transform: translateY(-2px);
}

.socials {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.socials img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 8px #ffd70044;
  transition: transform 0.3s;
}

.socials img:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 16px #ffd70088;
}

.help-now {
  background: linear-gradient(90deg, #ff8c00 60%, #ffd700 100%);
  color: #232526;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 0.7rem 1.5rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.help-now:hover {
  background: linear-gradient(90deg, #ffd700 60%, #ff8c00 100%);
  transform: translateY(-2px);
}

.foot-tags {
  list-style: none;
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.foot-tags li {
  background: #ffd70022;
  color: #ffd700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Move "Get Help Now" section further down and separate it */
.site-footer section:last-child {
  margin-top: 6rem;
  padding-top: 2.5rem;
  border-top: 2px solid #ffd70044;
}

.foot-bottom {
  border-top: 2px solid #ffd70044;
  padding-top: 2rem;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.foot-bottom nav a {
  color: #ffd700;
  margin-left: 1.5rem;
  font-size: 1rem;
  transition: color 0.3s;
}

.foot-bottom nav a:hover {
  color: #ff8c00;
}

/* ===========================
   MODAL — GLASSMORPHISM
=========================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(34,34,54,0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-content {
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  box-shadow: 0 8px 32px #23252688;
  padding: 2.5rem 2rem;
  max-width: 400px;
  color: #232526;
  position: relative;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffd700;
  cursor: pointer;
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 900px) {
  .nav-container { padding: 1rem; }
  .cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 600px) {
  .nav-links { 
    flex-direction: column; 
    gap: 1rem; 
    background: rgba(34,34,54,0.98);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    padding: 2rem 1rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 32px #23252644;
    display: none;
  }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 2rem 1rem; }
  .foot-bottom { flex-direction: column; gap: 1rem; }
}

/* ===========================
   SCROLLBAR — CUSTOM
=========================== */
::-webkit-scrollbar {
  width: 10px;
  background: #232526;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg,