/* --- Base Theme (Light SaaS) --- */
:root {
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --bg-color: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-color); color: var(--text-main); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Ultra Label (From Homepage) --- */
.ultra-section-label {
  display: inline-block; color: var(--primary); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
  padding: 8px 16px; border-radius: 50px; background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.2);
}

/* --- Hero Section --- */
.contact-hero {
  padding: 100px 20px 60px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-color) 100%);
}
.contact-title { font-size: 3.5rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; color: var(--text-main); }
.contact-subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* --- Info Cards --- */
.contact-info-section { padding: 40px 0 80px; }
.info-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.icon-wrapper { width: 60px; height: 60px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.blue-icon { background: #eff6ff; color: #3b82f6; }
.green-icon { background: #ecfdf5; color: #10b981; }
.purple-icon { background: #f5f3ff; color: #8b5cf6; }
.info-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.info-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; margin-bottom: 20px; }
.info-card a { color: var(--primary); font-weight: 600; text-decoration: none; }
.info-card a:hover { text-decoration: underline; }

/* --- Glassmorphism Form Section --- */
.contact-form-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: #ffffff;
}

/* Abstract Blur Backgrounds behind the form */
.mesh-bg-blob { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 0; opacity: 0.4; }
.blob-1 { background: #3b82f6; width: 500px; height: 500px; top: -100px; left: -100px; }
.blob-2 { background: #a855f7; width: 600px; height: 600px; bottom: -200px; right: -100px; }

.form-container { position: relative; z-index: 1; display: flex; justify-content: center; }

.glass-form-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 60px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.05), 0 0 0 1px inset rgba(255,255,255,0.5);
}

.form-header { text-align: center; margin-bottom: 40px; }
.form-header h2 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.form-header p { color: var(--text-muted); }

/* Form Elements */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.input-group { margin-bottom: 24px; display: flex; flex-direction: column; text-align: left; }
.input-group label { font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--text-main); }
.input-group input, .input-group select, .input-group textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-main);
  transition: all 0.3s ease;
  outline: none;
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
  background-color: #fff;
}

.btn-submit-form {
  width: 100%;
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-submit-form:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2); }

/* Success State */
.hidden { display: none !important; }
.form-success-state { text-align: center; padding: 40px 20px; animation: fadeIn 0.5s ease; }
.success-icon { width: 80px; height: 80px; background: #ecfdf5; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.form-success-state h3 { font-size: 2rem; color: var(--text-main); margin-bottom: 16px; }
.form-success-state p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- Location Section --- */
.location-section { padding: 80px 0; background-color: var(--bg-color); }
.location-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--white); border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border-color); box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.location-text { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.location-text h2 { font-size: 2rem; margin-bottom: 16px; }
.location-text p { color: var(--text-muted); margin-bottom: 24px; }
.location-text address { font-style: normal; color: var(--text-main); line-height: 1.8; font-size: 1.05rem; }
.map-placeholder { width: 100%; height: 100%; min-height: 400px; background: #e2e8f0; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-weight: 600; }

/* --- Footer Placeholder --- */
.site-footer { background: #ffffff; padding: 80px 0 40px; border-top: 1px solid var(--border-color); }
.f-nav-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.nav-col h5 { font-size: 1.1rem; margin-bottom: 20px; color: var(--text-main); }
.nav-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 12px; font-size: 0.95rem; }
.nav-col a:hover { color: var(--primary); }

/* --- Responsive --- */
@media (max-width: 992px) {
  .info-cards-grid { grid-template-columns: 1fr; }
  .location-card { grid-template-columns: 1fr; }
  .map-placeholder { min-height: 300px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .f-nav-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .contact-title { font-size: 2.5rem; }
  .glass-form-card { padding: 40px 20px; }
  .location-text { padding: 40px 20px; }
  .f-nav-grid { grid-template-columns: 1fr; }
}


/* ==========================================================
   NAVBAR STYLES (Exact Match to Home Page)
   ========================================================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-text {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: baseline;
}

.brand-logo {
  display: inline-block;
  background: linear-gradient(135deg, #8be9ff 0%, #1a73ff 45%, #0037ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
/* 1. Base state for the navigation links */
.nav-menu a {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative; /* CRITICAL: This allows the underline to position itself correctly */
}

/* 2. Text color changes to light blue on hover */
.nav-menu a:hover {
  color: var(--primary); /* This pulls the #0066FF blue from your variables */
}

/* 3. The invisible underline (starts at width: 0) */
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px; /* Positions the line just below the text */
  left: 0;
  width: 0; /* Starts hidden */
  height: 2px; /* Thickness of the underline */
  background-color: var(--primary); /* Color of the underline */
  transition: width 0.3s ease; /* Smoothly animates the width */
}

/* 4. The underline expands to 100% when you hover over the link */
.nav-menu a:hover::after {
  width: 100%;
}
/* --- Gradient Hover Button --- */
.btn-gradient-hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition:
    color 0.4s ease,
    transform 0.2s ease;
}

.btn-gradient-hover.primary {
  background: linear-gradient(
    90deg,
    rgba(0, 8, 144, 1) 0%,
    rgba(16, 0, 255, 1) 22%,
    rgba(86, 255, 247, 1) 100%
  );
  box-shadow: 0 4px 15px rgba(16, 0, 255, 0.2);
}

.btn-gradient-hover::after {
  content: "";
  background: white;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s ease;
}

.btn-gradient-hover:hover {
  color: rgb(0, 0, 0);
  transform: translateY(-2px);
}

.btn-gradient-hover:hover::after {
  transform: skewX(-45deg) scale(1, 1);
}

/* --- Mobile Toggle Button --- */
.nav-toggle {
  display: none;
  border: 1px solid var(--gray-200);
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-lines span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
}
/* 5. The Active State (Stays highlighted on the current page) */
.nav-menu a.active {
  color: #0066ff;
}

.nav-menu a.active::after {
  width: 100%;
}

/* --- Mobile Menu Panel --- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(92vw, 420px);
  height: 100%;
  background: white;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-nav-close {
  border: none;
  background: transparent;
  font-size: 44px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-800);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  padding: 0;
}

.mobile-nav-links a {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  color: var(--gray-900);
  border: 1px solid var(--gray-200);
}

.mobile-nav-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.mobile-nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-cta .btn-gradient-hover {
  width: 100%;
}

/* --- JavaScript Toggle Classes --- */
body.nav-open {
  overflow: hidden;
}
body.nav-open .mobile-nav {
  pointer-events: auto;
}
body.nav-open .mobile-nav-overlay {
  opacity: 1;
}
body.nav-open .mobile-nav-panel {
  transform: translateX(0);
}

/* --- Media Queries for Responsive Nav --- */
@media (max-width: 968px) {
  .nav-menu {
    display: none;
  }
  .hide-on-mobile {
    display: none !important;
  }
  .nav-toggle {
    display: flex;
  }
}


@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap");

/* Root Container - Deep Dark Theme */
.n2n-footer-wrapper {
  background-color: #080808;
  color: #ffffff;
  padding: 60px 0 30px 0;
  font-family: "Inter", sans-serif;
  border-top: 1px solid #1a1a1a;
  line-height: 1.5;
}

.f-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo & Branding */
.f-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-n2n {
  font-weight: 800;
  font-size: 1.8rem;
  color: #ffffff;
  letter-spacing: -1px;
}
.logo-commerce {
  font-weight: 800;
  font-size: 1.8rem;
  color: #007bff;
}
.f-branding p {
  color: #666;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* App Buttons */
.f-app-group {
  display: flex;
  gap: 12px;
}
.app-btn {
  display: flex;
  align-items: center;
  background: #141414;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #222;
  text-decoration: none;
  transition: 0.3s;
}
.app-btn:hover {
  border-color: #007bff;
  background: #1a1a1a;
}
.app-ico {
  font-size: 1.4rem;
  margin-right: 10px;
}
.app-info span {
  display: block;
  font-size: 0.6rem;
  color: #777;
  text-transform: uppercase;
}
.app-info strong {
  font-size: 0.85rem;
  color: #eee;
}

/* Navigation Grid */
.f-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 40px 0;
}
.nav-col h5 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.nav-col a {
  display: block;
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: 0.2s;
}
.nav-col a:hover {
  color: #007bff;
  padding-left: 5px;
}
.f-email {
  color: #fff !important;
  font-weight: 600;
  text-decoration: underline !important;
}

/* Bottom Bar */
.f-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
/* Base text color */
.f-legal-info p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
}

/* Base link state (Makinus) */
.f-legal-info p a {
  color: #888; /* Slightly lighter than the text */
  transition: color 0.3s ease;
  font-weight: 600;
}

/* Hover state - This will now work */
.f-legal-info p a:hover {
  color: #ffffff !important;
}
.legal-links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.legal-links a {
  color: #777;
  text-decoration: none;
  font-size: 0.8rem;
}
.legal-links a:hover {
  color: #fff;
}
.dot {
  width: 3px;
  height: 3px;
  background: #333;
  border-radius: 50%;
}

/* Social Icons - CENTERED WHITE ICONS */
.f-socials {
  display: flex;
  gap: 10px;
}
.s-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.s-circle svg {
  width: 20px;
  height: 20px;
  fill: white;
} /* Forces white center icons */

.fb {
  background: #1877f2;
}
.ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.yt {
  background: #ff0000;
}
.li {
  background: #0077b5;
}
.s-circle:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}

/* --- Professional Enterprise WhatsApp Float --- */
.wa-pro-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex; /* Ensures perfect SVG centering */
  align-items: center;
  justify-content: center;
  opacity: 0.9;

  /* Smooth easing curve for high-end feel */
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Natural depth shadowing */
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1))
    drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.wa-pro-float:hover {
  opacity: 1;
  /* Restrained lift—no cartoonish bouncing */
  transform: translateY(-4px) scale(1.03);

  /* Expanding shadow on hover to simulate floating */
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.15))
    drop-shadow(0 20px 25px rgba(0, 0, 0, 0.2));
}
/* Mobile Fix */
@media (max-width: 768px) {
  .f-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .f-header,
  .f-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .f-app-group,
  .f-socials {
    justify-content: center;
  }
}

