/* ============================================
   SOLXION - GLOBAL STYLES
   Style: Corporate, sober, Telcorp-inspired
   ============================================ */

:root {
  --navy: #0A1F44;
  --navy-deep: #050F26;
  --blue: #1E88E5;
  --blue-light: #4FC3F7;
  --blue-soft: #E3F2FD;
  --orange: #F7941D;
  --white: #FFFFFF;
  --gray-50: #FAFBFC;
  --gray-100: #F4F6F9;
  --gray-200: #E5EAF0;
  --gray-300: #CBD5E0;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --success: #10B981;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 31, 68, 0.10);
  --shadow-xl: 0 24px 64px rgba(10, 31, 68, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 2.5rem;
  transition: var(--transition);
}

nav.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.85rem 2.5rem;
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.logo:hover { transform: scale(1.02); }
.logo svg { height: 73px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.btn-nav {
  padding: 11px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
}

/* ===== UNIVERSAL ELEMENTS ===== */
.section {
  padding: 6rem 2.5rem;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.title-xl {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
}

.title-lg {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.title-md {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 640px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30, 136, 229, 0.25);
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(247, 148, 29, 0.3);
}

.btn-orange:hover {
  background: #e08510;
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.3s;
  display: inline-block;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group label .req {
  color: var(--orange);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.08);
}

.form-control::placeholder {
  color: var(--gray-300);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
  font-family: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(30, 136, 229, 0.05));
  border-radius: var(--radius-md);
}

.form-success .check {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 5rem 2.5rem 2rem;
}

.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  max-width: 360px;
  line-height: 1.75;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footer-bottom {
  max-width: 1320px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ICON STYLES (geometric, no emojis) ===== */
.geo-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.geo-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.geo-icon.orange {
  background: rgba(247, 148, 29, 0.1);
}
.geo-icon.orange svg { stroke: var(--orange); }

.geo-icon.dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.geo-icon.dark svg { stroke: var(--blue-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .section { padding: 4rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .logo svg { height: 44px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .btn-nav { display: none; }
  .logo svg { height: 38px; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 2rem 1.5rem;
  z-index: 999;
}

.mobile-menu.active { display: flex; flex-direction: column; gap: 1.5rem; }

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}


/* ===== ENTERPRISE UPDATE ===== */
.logo img{
    width:190px !important;
}

.hero-map-section{
    padding:6rem 2rem;
    background:#f5f7fb;
}

.hero-map-grid{
    max-width:1320px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
}

.hero-map-grid img{
    width:100%;
    border-radius:24px;
}

.map-copy h2{
    font-size:3rem;
    line-height:1.1;
    margin-bottom:1.5rem;
}

.map-copy p{
    color:#5d6778;
    line-height:1.8;
    font-size:1.05rem;
}

@media(max-width:768px){
    .hero-map-grid{
        grid-template-columns:1fr;
    }

    .map-copy h2{
        font-size:2.2rem;
    }

    .logo img{
        width:165px !important;
    }
}
