/* ================= BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);
  color: #111;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 3rem;
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: top 0.3s ease;
  backdrop-filter: blur(5px);
}

.navbar.hidden {
  top: -140px;
}

/* ===== LOGO ===== */
.logo {
  position: relative;
  height: 0;
  z-index: 1001;
}

.logo img {
  height: 130px;
  width: auto;
  position: absolute;
  top: -30px;
  left: -30px; /* adjust this number until it looks right */
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* STANDARD NAV LINKS (NOT BUTTONS) */
.nav-links a:not(.btn) {
  position: relative;
  color: #ff4d00;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 0.25rem 0;
}

/* UNDERLINE ONLY FOR NON-BUTTON LINKS */
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #ff4d00;
  transition: width 0.25s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

/* ACTIVE PAGE LINK */
.nav-links a.active:not(.btn)::after {
  width: 100%;
}

/* ===== BUTTON LINK ===== */
.nav-links .btn {
  background-color: #39ff14;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(57, 255, 20, 0.65); /* thin neon border */
  transition: all 0.3s ease;

    /* stronger always-on glow */
  box-shadow:
    0 0 6px rgba(57, 255, 20, 0.55),
    0 0 12px rgba(57, 255, 20, 0.35),
    inset 0 0 6px rgba(57, 255, 20, 0.45);}

/* hover = stronger glow */
.nav-links .btn:hover {
  background-color: #39ff14;
  color: #000;
  box-shadow:
    0 0 10px rgba(57, 255, 20, 0.75),
    0 0 22px rgba(57, 255, 20, 0.5),
    inset 0 0 10px rgba(57, 255, 20, 0.55);
}



/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0,0,0,0.95);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    text-align: center;
    gap: 1.5rem;
    padding: 0;
    font-size: 1.2rem;
  }
    .logo {
    height: auto;
  }

  .logo img {
    height: 65px;
    position: static;
    display: block;
    margin-left: -10px;
  }
  .nav-links li {
    list-style: none;
  }
  .nav-links a:not(.btn) {
    font-size: 1.3rem;
  }
  .nav-links .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
  }
  .nav-links.active {
    max-height: 500px;
    padding: 1rem 0;
  }
}

/* HIDE HAMBURGER ON DESKTOP */
@media (min-width: 865px) {
  .menu-toggle {
    display: none;
  }
}


/* ================= ORANGE THEME VARIABLES ================= */
:root {
  --orange-main: #ff4d00;
  --orange-light: #ff7a33;
  --orange-soft: #ff9e66;
  --orange-deep: #cc3d00;
  --orange-glow: rgba(255, 77, 0, 0.45);
}

/* ================= DARK CONTACT SECTION ================= */
.contact-section {
  min-height: 100vh;
  padding: 180px 8% 120px;

  background:
    radial-gradient(circle at 15% 20%, rgba(255, 77, 0, 0.15), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 122, 51, 0.10), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(255, 77, 0, 0.08), transparent 50%),
    linear-gradient(to bottom, #1a0f0a, #0f0f14 70%);

  color: #fff;
}

/* ===== HERO TEXT ===== */
.contact-hero-text {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
}

.contact-hero-text h1 span {
  background: linear-gradient(
    90deg,
    var(--orange-main),
    var(--orange-light),
    var(--orange-soft)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero-text p {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #d1d5db;
}

/* ===== GLASS CARD ===== */
.contact-card {
  display: flex;
  gap: 3rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 3rem;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    0 0 60px rgba(255,77,0,0.15);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,77,0,0.25), transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(120px);
  z-index: -1;
}

/* ===== LEFT SIDE ===== */
.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-left h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-left p {
  margin-bottom: 2rem;
  color: #cbd5e1;
}

/* ===== FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 0 0 auto;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange-main);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

/* Smaller message box to balance layout */
.contact-form textarea {
  min-height: 210px; /* reduced from 300px */
  resize: vertical;
}

/* ===== ORANGE BUTTON ===== */
.orange-btn {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--orange-main),
    var(--orange-light),
    var(--orange-deep)
  );
  transition: all 0.3s ease;
}

.orange-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 15px 30px var(--orange-glow),
    0 0 25px rgba(255,122,51,0.4);
}

/* ===== RIGHT SIDE IMAGE ===== */
.contact-right {
  flex: 1;
  display: flex;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid rgba(255, 77, 0, 0.6);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05); /* slight zoom for better fit */
  display: block;
  border-radius: 25px;
}

/* BLACK TINT + GRADIENT OVERLAY */
.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    linear-gradient(to bottom right, rgba(0,0,0,0.20), rgba(0,0,0,0.10)),
    rgba(0,0,0,0.2);
  pointer-events: none;
  border-radius: 25px;
}

/* ===== MOBILE LAYOUT ===== */
@media (max-width: 900px) {

  .contact-card {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-right {
    display: none;
  }
}

/* ================= SAFE CONTACT SECTION ENHANCEMENTS ================= */

/* Background only */
.contact-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 77, 0, 0.15), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 122, 51, 0.10), transparent 45%),
    linear-gradient(to bottom, #1a0f0a, #0f0f14 70%);
}

/* ================= SIMPLE FADE ANIMATION ================= */

@keyframes contactFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate hero text only */
.contact-hero-text {
  opacity: 0;
  animation: contactFadeUp 0.8s ease forwards;
}

/* Animate card only */
.contact-card {
  opacity: 0;
  animation: contactFadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

/* Optional: soft glow without affecting layout */
.contact-card::before {
  content: "";
  position: absolute;
  inset: -100px;
  background: radial-gradient(circle, rgba(255,77,0,0.15), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 5rem 2rem 3rem;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-column h3 {
  color: #ff4d00;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.footer-column p,
.footer-column ul {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #ff4d00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ea580c;
}

/* ===== FOOTER BUTTON ===== */
.footer-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4d00, #ff8c42);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(249,115,22,0.35);
  transition: all 0.25s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff5a00, #ff6600);
  box-shadow: 
    0 10px 24px rgba(255,90,0,0.6),
    0 0 15px rgba(255,133,0,0.5);
  text-shadow: 0 0 8px rgba(255,133,0,0.6);
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 1.5rem;
}

.social-links li a svg {
  width: 40px;
  height: 40px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links li a:hover svg {
  transform: scale(1.2);
  opacity: 0.85;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-column {
    width: 100%;
    max-width: 400px;
    text-align: center;   /* 🔥 center everything on mobile */
  }

  .social-links {
    justify-content: center;  /* 🔥 center icons on mobile */
  }

  .footer-btn {
    margin: 1rem auto 0;
  }
}