/* =========================
   HEADER SECTION
========================= */

.header-section {
  position: fixed;
  width: 100%;
  z-index: 999;
}

/* Gradient overlay behind header */
.header-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;                                                    
}                                                                                                                                                                                                                      

/* MULTI-COLOR LOGO GLOW */
.header-logo {
  position: relative;
}

.header-logo-glow {
  position: absolute;
  inset: -28px;
  z-index: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 255, 157, 0.45), transparent 65%),
    radial-gradient(circle at 100% 0%, rgba(0, 200, 255, 0.4), transparent 65%),
    radial-gradient(circle at 50% 100%, rgba(160, 100, 255, 0.35), transparent 65%);
  filter: blur(28px);
  animation: logoGlowShift 10s ease-in-out infinite alternate;
}

@keyframes logoGlowShift {
  0% {
    transform: translate(-10px, -8px) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(5px, 0px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translate(10px, 10px) scale(1);
    opacity: 0.9;
  }
}

/* NAV MENU (DESKTOP) */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* <<< CONTROL MENU SPACING HERE */
}

.header-nav-item {
  position: relative;
  color: #ffffff;
  font-weight: 300;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.header-nav-item::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  height: 2px;
  width: 0%;
   transform: translateX(-50%);
  background: #00ff9d;
  transition: width 0.35s ease;
}

.header-nav-item:hover {
  color: #00ff9d;
}

.header-nav-item:hover::after {
  width: 100%;
}

.header-nav-item.active {
  color: #00ff9d;
  font-weight: 600;
}

.header-nav-item.active::after {
  width: 100%;
}

/* SOCIAL ICONS */
.header-social-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1); /* force white */
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-social-icon:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* MOBILE NAV */
#mobileMenu{
	background-color:rgba(0,0,0,0.1);
}
.header-mobile-nav {
  width: 100%;
  z-index: 999;
}

.header-mobile-item {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.header-mobile-item.active {
  color: #00ff9d;
}


/* =========================
   ABOUT HERO SECTION
========================= */

.contact-hero-section {
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
  background-color: #05080a;
}

/* Background image */
.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

/* Overlay */
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      rgba(0, 0, 0, 0.85) 100%
    );
}

/* Content */
.contact-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  padding: 0 1.5rem;
  height: 100%;
  margin-Left:35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Small label */
.contact-hero-label {
  color: #00ff9d;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

/* Main title */
.contact-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.1s;
}

.contact-hero-title span {
  color: #00ff9d;
  text-shadow: 0 0 30px rgba(0, 255, 157, 0.35);
}

/* Description */
.contact-hero-desc {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.25s;
  text-align:justify;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
	.contact-hero-content {

  margin-Left:0px;
  
}
	
  .contact-hero-section {
    height: 85vh;
  }

  .contact-hero-desc {
    font-size: 14px;
  }
}
/* ============================= */
/* CONTROL: ADDRESS GRID COUNT */
/* Change value to 1, 2, or 3 */
/* ============================= */
:root {
  --address-grid-columns: 2;
}

/* ============================= */
/* LAYOUT */
/* ============================= */
.contact-main {
  padding: 80px 10%;
  background: #0b0b0b;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2{
	font-weight:bold;
	color:#00ff9d;
	font-size:3rem;
}
/* ============================= */
/* ADDRESS GRID */
/* ============================= */
.address-grid {
  display: grid;
  grid-template-columns: repeat(var(--address-grid-columns), 1fr);
  gap: 20px;
  margin-top: 30px;
}

.address-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 157, 0.2);
  border-radius: 14px;
}

.address-card h4 {
  color: #00ff9d;
  margin-bottom: 5px;
  font-size:1rem;
  font-weight:bold;
}

.address-card p {
  color: #bbb;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.address-card .meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #aaa;
}

/* ============================= */
/* FORM */
/* ============================= */
.contact-form {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 157, 0.15);
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00ff9d;
}

.error {
  color: #ff4d4d;
  font-size: 0.75rem;
  margin-top: 4px;
  display: block;
}

.contact-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #00ff9d, #00cfff);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

/* ============================= */
/* SUCCESS MESSAGE */
/* ============================= */
.form-success {
  display: none;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(0, 255, 157, 0.15);
  color: #00ff9d;
  border-radius: 8px;
  text-align: center;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  :root {
    --address-grid-columns: 1;
  }
}


/* ============================= */
/* MAP SECTION */
/* ============================= */
.contact-map-section {
  padding: 100px 10%;
  background: #000;
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-header h2 {
  color: #00ff9d;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.map-header p {
  color: #aaa;
}

/* ============================= */
/* MAP */
/* ============================= */
#neoLeafletMap {
  width: 100%;
  height: 450px;
  border-radius: 18px;
  border: 1px solid rgba(0, 255, 157, 0.2);
  box-shadow: 0 30px 80px rgba(0, 255, 157, 0.1);
}

/* ============================= */
/* NEON MARKER */
/* ============================= */
.neo-marker span {
  width: 14px;
  height: 14px;
  background: #00ff9d;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 10px #00ff9d;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(0, 255, 157, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
  }
}

/* ============================= */
/* LEAFLET ATTRIBUTION (SUBTLE) */
/* ============================= */
.leaflet-control-attribution {
  font-size: 10px;
  opacity: 0.4;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
  #neoLeafletMap {
    height: 350px;
  }
}
/* ============================= */
/* FIX: MAP SHOULD NOT OVERLAP HEADER */
/* ============================= */
.contact-map-section {
  position: relative;
  z-index: 1;
}

#neoLeafletMap {
  position: relative;
  z-index: 1;
}

/* ============================= */
/* LEAFLET ATTRIBUTION (SUBTLE) */
/* ============================= */
.leaflet-control-attribution {
  font-size: 10px;
  opacity: 0.4;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 900px) {
  .map-layout {
    grid-template-columns: 1fr;
  }

  #neoLeafletMap {
    height: 350px;
  }
}


/* ============================= */
/* SECTION 4: CTA */
/* ============================= */
.contact-cta {
  padding: 6rem 1.5rem;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(0,255,157,0.15), rgba(0,0,0,0.95));
}

.contact-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-cta p {
  color: #ccc;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #00ff9d;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
  background: #00cfff;
  transform: translateY(-3px);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }
}




/* ================= FOOTER ================= */

.footer-section {
  background: radial-gradient(
    ellipse at top,
    rgba(0, 255, 157, 0.06),
    rgba(0, 0, 0, 0.9)
  );
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Brand */
.footer-logo span img {
	width:150px;
}

 

.footer-desc {
  margin-top: 0.8rem;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
}

/* Headings */
.footer-heading {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #00ff9d;
}

.footer-contact span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  color: #000;
  background: #00ff9d;
  border-color: #00ff9d;
}

/* Newsletter */
.footer-newsletter-form {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 6px;
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  padding: 0.6rem 0.8rem;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form button {
  background: #00ff9d;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  transition: transform 0.2s ease;
}

.footer-newsletter-form button:hover {
  transform: translateX(2px);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #00ff9d;
}
