/* ===========================
   DLight Creatives – Contact Page Styles (Final Stable Version)
   =========================== */

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-image: linear-gradient(to bottom right, #f39200, #1e1e1e);
}

/* Page wrapper background (entire page, fixed) */
html {
  background-image: linear-gradient(to bottom right, #f39200, #1e1e1e);
  background-size: cover;
}

/* Subtle overlay to improve text readability */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.78); /* slightly transparent white */
  z-index: 0;
  pointer-events: none;
}

/* Content stays above overlay */
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: relative;
  z-index: 10000; /* higher than main and hero */
}
/* Keep header dropdown menus above everything */
.mega-menu {
  position: absolute;
  z-index: 9999;
}

/* HERO */
.contact-hero {
  padding: 60px 0 80px;
  text-align: center;
  background: transparent; /* Remove gradient */
}

.contact-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.contact-hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
/* =====================================
   CONTACT OPTIONS (REIMAGINED)
   ===================================== */
.contact-options {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #fff, #f9f9f9);
  overflow: hidden;
}

/* Soft glowing accent shapes */
.contact-options::before,
.contact-options::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  z-index: 0;
}
.contact-options::before {
  width: 320px;
  height: 320px;
  top: -100px;
  left: -80px;
  background: #f39200;
}
.contact-options::after {
  width: 280px;
  height: 280px;
  bottom: -120px;
  right: -60px;
  background: #ffc267;
}

/* Main inner layout */
.contact-options-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ========== LEFT SIDE — DIRECT CONTACT ========== */
.contact-direct {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(17, 17, 17, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-direct:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(17, 17, 17, 0.08);
}

.contact-direct h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: #f39200;
  margin-bottom: 22px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}

.contact-info:hover {
  transform: translateX(6px);
}

.contact-info i {
  color: #f39200;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-info:hover i {
  transform: scale(1.2);
}

.contact-info a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: #f39200;
}

/* ========== RIGHT SIDE — CONTACT FORM ========== */
.contact-form-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(17, 17, 17, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-form-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(17, 17, 17, 0.08);
}

.contact-form-container h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: #f39200;
  margin-bottom: 22px;
}

/* Form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 700;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 15px;
  font-family: "Nunito Sans", sans-serif;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f39200;
  box-shadow: 0 0 10px rgba(243, 146, 0, 0.2);
  outline: none;
}

/* Submit Button */
.contact-form .btn-primary {
  margin-top: 10px;
  padding: 14px 0;
  border-radius: 10px;
  font-weight: 700;
  background: linear-gradient(90deg, #f39200, #ffb84d);
  border: none;
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(243, 146, 0, 0.25);
}

/* Subtle fade in animation */
@keyframes fadeUpContact {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-direct,
.contact-form-container {
  animation: fadeUpContact 0.8s ease both;
}
.contact-form-container {
  animation-delay: 0.2s;
}

/* RESPONSIVE */
@media (max-width: 1023px) {
  .contact-options-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-direct,
  .contact-form-container {
    padding: 40px 28px;
  }
}

@media (max-width: 767px) {
  .contact-options {
    padding: 70px 0;
  }
  .contact-direct h2,
  .contact-form-container h2 {
    font-size: 1.6rem;
  }
  .contact-form .btn-primary {
    font-size: 1rem;
  }
}

.site-footer {
  background: #1e1e1e;
  position: relative;
  z-index: 1;
}
/* Responsive */
@media (max-width: 1023px) {
  .contact-options-inner {
    grid-template-columns: 1fr;
  }
}

/* === MOBILE WHITESPACE FIX === */
html,
body {
  overflow-x: hidden !important; /* Prevent sideways scroll */
  width: 100%;
}
