/* ============================================================
   WISE IN BLUE — Main CSS
   ============================================================ */


:root {
  /* VRM Colors — Lavender Blue */
  --vrm-primary:  #8E94E5;
  --vrm-light:    #B8BCEF;
  --vrm-dark:     #0e0f2a;
  --vrm-mid:      #1a1b4b;
  --vrm-accent:   #8E94E5;
  --vrm-gradient: linear-gradient(135deg, #dde0f8 0%, #3d43a8 100%);

  /* Digital Colors — Gold */
  --dig-primary:  #F2B705;
  --dig-light:    #F9D96A;
  --dig-dark:     #1a1000;
  --dig-mid:      #3a2800;
  --dig-accent:   #F2B705;
  --dig-gradient: linear-gradient(135deg, #dcd4b4 0%, #c9952a 100%);

  /* Neutrals */
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-400:   #94a3b8;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --gray-800:   #1e293b;
  --gray-900:   #0f172a;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-py:   80px;
  --container-max: 1200px;

  /* Transitions */
  --transition:      all 0.3s ease;
  --transition-slow: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-800); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary-vrm {
  background: var(--vrm-accent);
  color: var(--white);
  border-color: var(--vrm-accent);
}
.btn-primary-vrm:hover { background: transparent; color: var(--vrm-accent); }

.btn-primary-dig {
  background: var(--dig-accent);
  color: var(--dig-dark);
  border-color: var(--dig-accent);
}
.btn-primary-dig:hover { background: transparent; color: var(--dig-accent); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: var(--white); color: var(--gray-800); }

.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  border-color: var(--gray-200);
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn-ghost:hover { background: var(--gray-100); border-color: var(--gray-400); }

/* ── SECTION TITLES ── */
.section-title    { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 16px; position: relative; padding-bottom: 20px; }
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 44px; height: 3px;
  border-radius: 2px;
}
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; }
.section-header   { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.section-header.centered .section-title::after { left: 50%; transform: translateX(-50%); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.card p  { color: var(--gray-600); font-size: 0.93rem; line-height: 1.75; }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.service-card:hover { transform: translateX(4px); box-shadow: 0 8px 32px rgba(0,0,0,0.10); }
.service-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.service-card p  { color: var(--gray-600); font-size: 0.9rem; line-height: 1.75; }

/* ── HERO ── */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--section-py) 0;
}
.hero-content  { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 800; color: var(--white); margin-bottom: 20px; }
.hero p  { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.85; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 0;
  margin-top: 48px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 24px 32px;
}
.hero-stat { flex: 1; padding: 0 28px; border-right: 1px solid rgba(255,255,255,0.13); }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { border-right: none; padding-right: 0; }
.hero-stat strong { display: block; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; }
.hero-stat span   { font-size: 0.83rem; color: rgba(255,255,255,0.6); }

/* ── BLOG CARDS ── */
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.blog-card-image { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body  { padding: 24px; }
.blog-tag {
  display: inline-block;
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card-body h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p  { color: var(--gray-600); font-size: 0.88rem; line-height: 1.75; margin-bottom: 16px; }
.blog-meta { font-size: 0.78rem; color: var(--gray-400); display: flex; align-items: center; gap: 12px; }

/* ── CONTACT FORM ── */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; font-size: 0.88rem; margin-bottom: 8px; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid var(--gray-200); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.93rem;
  color: var(--gray-800); background: var(--white);
  transition: var(--transition); outline: none;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; color: var(--gray-400); }
.contact-info-item p  { color: var(--gray-800); font-size: 0.93rem; }

/* ── ABOUT ── */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 36px 24px; border-radius: 16px; background: var(--gray-50); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.value-card p  { font-size: 0.88rem; color: var(--gray-600); line-height: 1.75; }
.about-image-placeholder { border-radius: 24px; min-height: 400px; display: flex; align-items: center; justify-content: center; font-size: 6rem; position: relative; overflow: hidden; }

/* ── PAGE HERO ── */
.page-hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 12px; position: relative; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; position: relative; }

/* ── TESTIMONIALS ── */
.testimonial-card { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); position: relative; overflow: hidden; }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 4px; left: 18px;
  font-size: 6rem;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.08;
  pointer-events: none;
}
.testimonial-stars { font-size: 1rem; margin-bottom: 16px; color: #F59E0B; }
.testimonial-card p { font-size: 0.97rem; line-height: 1.85; color: var(--gray-600); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: var(--white); }
.testimonial-author-info strong { display: block; font-size: 0.88rem; font-weight: 600; }
.testimonial-author-info span   { font-size: 0.78rem; color: var(--gray-400); }

/* ── CTA SECTION ── */
.cta-section { padding: var(--section-py) 0; background: var(--gray-50); text-align: center; }
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.cta-section p  { color: var(--gray-600); font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
.site-footer { padding: 60px 0 32px; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { margin-top: 16px; font-size: 0.88rem; line-height: 1.85; opacity: 0.8; }
.footer-logo { height: 64px; width: auto; border-radius: 12px; background: rgba(255,255,255,0.95); padding: 6px 10px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; opacity: 0.55; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: var(--transition); color: rgba(255,255,255,0.65); }
.social-links a:hover { border-color: transparent; color: var(--white); }
.social-links a[aria-label="Instagram"]:hover { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); }
.social-links a[aria-label="Facebook"]:hover  { background: #1877F2; }
.social-links a[aria-label="YouTube"]:hover   { background: #FF0000; }
.social-links a[aria-label="LinkedIn"]:hover  { background: #0A66C2; }

/* ── BLOG SECTION DIVIDER ── */
.section-divider { display:flex; align-items:center; gap:16px; margin:56px 0 40px; }
.section-divider::before, .section-divider::after { content:''; flex:1; height:1px; background:var(--gray-200); }
.section-divider span { font-family:var(--font-heading); font-weight:700; font-size:0.78rem; letter-spacing:1.5px; text-transform:uppercase; white-space:nowrap; padding:0 4px; }
.section-divider.vrm span { color:#8E94E5; }
.section-divider.dig span { color:#b38400; }

/* ── PROCESS ── */
.process-step { text-align: center; color: var(--white); }
.process-number { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin: 0 auto 20px; }
.process-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.process-step p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.75; }

/* ── NAVBAR ── */
.navbar { position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.07); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.navbar-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar-logo img { height: 52px; width: auto; background: rgba(255,255,255,0.95); border-radius: 9px; padding: 4px 7px; }
.navbar-logo span { font-family: var(--font-heading); font-weight: 700; font-size: 0.97rem; color: var(--white); }
.navbar-logo .section-badge { font-size: 0.62rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase; }
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.navbar-nav a { color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: var(--transition); }
.navbar-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.btn-change-section {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.4px;
  transition: var(--transition); text-decoration: none;
  font-family: var(--font-heading);
}
.navbar-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.navbar-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 40px; }
  .about-hero { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero { min-height: 70vh; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; gap: 0; padding: 20px 24px; }
  .hero-stat { padding: 14px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.13); }
  .hero-stat:last-child { border-bottom: none; }
}
@media (max-width: 900px) {
  .navbar-hamburger { display: flex; }
  .navbar-nav {
    display: none; position: absolute; top: 80px; left: 0; right: 0;
    flex-direction: column; padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07); gap: 4px;
  }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { width: 100%; padding: 12px 16px; }
}

/* ── BLOG CARD IMAGE ZOOM ── */
.blog-card-image { transition: transform 0.45s ease; }
.blog-card:hover .blog-card-image { transform: scale(1.07); }

/* ── FAQ ACCORDION ── */
.faq-section { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item summary {
  font-weight: 600; font-size: 0.97rem;
  padding: 20px 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--gray-800); gap: 16px; transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  flex-shrink: 0; transition: transform 0.25s ease; color: var(--gray-400);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { color: var(--gray-600); font-size: 0.93rem; line-height: 1.8; padding-bottom: 20px; }

/* ── BLOG FILTER ── */
.blog-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
.blog-filter-btn {
  padding: 8px 22px; border-radius: 50px;
  border: 1.5px solid var(--gray-200); background: var(--white); color: var(--gray-600);
  font-size: 0.83rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); font-family: var(--font-body);
}
.blog-filter-btn:hover { border-color: var(--gray-400); color: var(--gray-800); }
.blog-filter-btn.active { background: var(--gray-800); border-color: var(--gray-800); color: var(--white); }

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed; bottom: 88px; right: 24px;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: var(--white) !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9990; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gray-800); color: var(--white);
  font-size: 1.1rem; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 9990;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

@media (max-width: 768px) {
  .whatsapp-fab { bottom: 80px; right: 16px; }
  .back-to-top  { bottom: 16px; right: 16px; }
}

/* ── STATS HOVER ── */
.hero-stat { transition: transform 0.25s ease; }
.hero-stat:hover { transform: translateY(-5px); }
.hero-stat strong { display: inline-block; transition: transform 0.25s ease, color 0.25s ease; }
.hero-stat:hover strong { transform: scale(1.13); }

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed; pointer-events: none; z-index: 99999;
  width: 8px; height: 8px; border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s ease;
  will-change: left, top;
}
.cursor-ring {
  position: fixed; pointer-events: none; z-index: 99998;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid currentColor;
  transform: translate(-50%, -50%);
  transition: border-color 0.3s ease, transform 0.2s ease, opacity 0.2s ease;
  will-change: left, top;
  opacity: 0.65;
}
.cursor-ring.is-hover {
  transform: translate(-50%, -50%) scale(1.55);
  opacity: 0.4;
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}
