/* =========================================
   SURVEY POINT — Global Stylesheet
   Theme: Deep Navy + Cyan Precision
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Nunito:wght@300;400;600;700&family=Bebas+Neue&display=swap');

:root {
  --navy-deep:   #060E1F;
  --navy:        #0D1B35;
  --navy-mid:    #132248;
  --navy-light:  #1E3260;
  --cyan:        #00C2FF;
  --cyan-soft:   #4DD9FF;
  --cyan-dim:    #0096CC;
  --white:       #FFFFFF;
  --off-white:   #E8F0F7;
  --grey:        #8FA3BC;
  --grey-light:  #D0DDE9;
  --card-bg:     #0E1F3D;
  --card-border: rgba(0,194,255,0.15);
  --shadow-glow: 0 0 30px rgba(0,194,255,0.18);
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-head:   'Rajdhani', sans-serif;
  --font-body:   'Nunito', sans-serif;
  --font-display:'Bebas Neue', cursive;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--cyan-dim); border-radius: 3px; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { font-size: 1rem; color: var(--grey); }

.cyan { color: var(--cyan); }
.white { color: var(--white); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 4px; font-family: var(--font-head);
  font-size: 1rem; font-weight: 600; letter-spacing: 0.05em;
  cursor: pointer; border: none; transition: var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan-dim), var(--cyan));
  color: var(--navy-deep);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,194,255,0.4); }
.btn-outline {
  background: transparent; color: var(--cyan); border: 2px solid var(--cyan);
}
.btn-outline:hover { background: var(--cyan); color: var(--navy-deep); transform: translateY(-2px); }

/* ---- SECTION LABEL ---- */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--cyan); font-family: var(--font-head); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: ''; width: 28px; height: 2px; background: var(--cyan);
}
.section-title { color: var(--white); margin-bottom: 1rem; }
.section-sub { color: var(--grey); max-width: 600px; font-size: 1.05rem; }

section { padding: 100px 0; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem; display: flex; align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(6,14,31,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  padding: 0.7rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-logo img { height: 92px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--off-white);
  transition: var(--transition); position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--cyan); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--white); transition: var(--transition); }

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  border-top: 1px solid var(--card-border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem;
  padding-bottom: 50px;
}
.footer-brand img { height: 76px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.2rem; position: relative; padding-bottom: 0.6rem;
}
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--cyan); }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.9rem; color: var(--grey); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--cyan); padding-left: 6px; }
.footer-contact-item {
  display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem;
}
.footer-contact-item .ico { color: var(--cyan); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.88rem; color: var(--grey); }
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 1.5rem 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p, .footer-bottom a { font-size: 0.82rem; color: var(--grey); }
.footer-bottom a:hover { color: var(--cyan); }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); font-size: 0.85rem; transition: var(--transition);
}
.social-links a:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,194,255,0.08); }

/* ---- CARDS ---- */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.glass-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.glass-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: rgba(0,194,255,0.3); }
.glass-card:hover::before { opacity: 1; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300C2FF' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font-head); font-size: 0.9rem; color: var(--grey); }
.breadcrumb a { color: var(--cyan); }
.breadcrumb span { color: var(--grey); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: waPulse 2s infinite;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ---- DIVIDER ---- */
.cyan-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
.text-center .cyan-divider { margin: 1rem auto 1.5rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(6,14,31,0.98); padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--card-border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
