/* ==========================================
   CONSULTINA — Perfectionist Redesign v5
   FORCED 2-COLUMN HERO & STAGGERED SERVICES
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --cyan:       #00C2CB;
  --cyan-dark:  #00A8B0;
  --cyan-light: #F0FDFF;
  --text-main:  #111827;
  --text-muted: #6B7280;
  --bg-main:    #FFFFFF;
  --border:     #F3F4F6;
  --radius-md:  16px;
  --radius-lg:  32px;
  --shadow-md:  0 20px 50px rgba(0,0,0,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ==========================================
   HEADER — PREMIUM GLASSMORPHISM
   ========================================== */
.site-header {
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85); /* Glass tint */
  backdrop-filter: blur(12px) saturate(180%); /* Glass effect */
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(243, 244, 246, 0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.02);
}

.brand-logo {
  height: 48px; /* Slightly More Compact */
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 32px; 
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: #4B5563; /* Slightly warmer gray */
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s ease;
}

.nav-links a:hover { 
  color: var(--text-main); 
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-wa {
  background: var(--cyan);
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 194, 203, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-wa:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 194, 203, 0.3);
}

.nav-wa svg { width: 18px; height: 18px; fill: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 200;
  color: var(--text-main);
}
.hamburger svg { width: 30px; height: 30px; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active { right: 0; }
.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-main);
}
.mobile-menu .nav-wa { width: 100%; }

.mobile-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================
   HERO — ACTUAL 2 COLUMNS
   ========================================== */
.hero {
  padding: 100px 0;
  background: #fff;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr; /* TWO COLUMNS */
  gap: 60px;
  align-items: center;
}
.hero-content {
  text-align: left; /* FORCE LEFT ALIGN */
}
.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #0F172A;
}
.hero-content h1 .hl { color: var(--cyan); }
.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 40px;
}
.btn-hero {
  display: inline-block;
  background: var(--cyan);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 194, 203, 0.4);
}

.hero-visual {
  width: 100%;
}
.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

/* ==========================================
   TRUST BAR
   ========================================== */
.trust-bar {
  padding: 40px 0;
  background: #fff;
}
.trust-inner {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #334155;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-item svg { width: 32px; height: 32px; color: #94A3B8; }

/* ==========================================
   SERVICES — ASYMMETRIC GRID
   ========================================== */
.services {
  padding: 120px 0;
}
.services-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
}
.services-title h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.services-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: start;
}
.service-card {
  padding: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}
.service-card.large {
  grid-row: span 2; /* STAGGERED EFFECT */
  background: var(--cyan-light);
  border: none;
}
.svc-icon { color: var(--cyan); margin-bottom: 24px; }
.svc-icon svg { width: 40px; height: 40px; }
.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}
.svc-link {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

/* ==========================================
   CALCULATOR
   ========================================== */
.calculator {
  padding: 100px 0;
}
.calc-card {
  background: var(--cyan-light);
  border-radius: 40px;
  padding: 80px;
}
.calc-card h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 50px;
}
.calc-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
}
.calc-input-group { margin-bottom: 30px; }
.calc-label {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.input-main {
  width: 100%;
  padding: 18px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  outline: none;
  transition: border-color 0.3s;
}
.input-main:focus {
  border-color: var(--cyan);
}
.toggle-box {
  display: flex;
  background: #fff;
  border-radius: 50px;
  padding: 4px;
}
.toggle-btn {
  flex: 1;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50px;
  color: var(--text-muted);
}
.toggle-btn.active {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 194, 203, 0.3);
}

.calc-results {
  background: #F3F4F6;
  border-radius: 24px;
  padding: 40px;
}
.res-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.res-row .lbl { font-size: 1.1rem; color: var(--text-muted); }
.res-row .val { font-weight: 700; font-size: 1.2rem; }
.res-total {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #E5E7EB;
  display: flex;
  justify-content: space-between;
}
.res-total .lbl { font-size: 1.5rem; font-weight: 800; }
.res-total .val { font-size: 2.2rem; font-weight: 800; color: var(--cyan-dark); }

/* ==========================================
   CONTACT
   ========================================== */
.contact { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.contact-info h2 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 18px 24px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-main);
  transition: all 0.3s;
  outline: none;
}
.contact-form input:focus, 
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 194, 203, 0.1);
  background: #fff;
}
.contact-details a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.contact-details a:hover {
  color: var(--cyan);
}
.form-split { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px; 
}
.btn-submit {
  background: var(--cyan);
  color: #fff;
  padding: 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 194, 203, 0.3);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #111827;
  color: #fff;
  padding: 80px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  color: #6B7280;
  font-size: 0.9rem;
}

/* ==========================================
   FAB
   ========================================== */
.wa-fab {
  position: fixed;
  bottom: 40px; right: 40px;
  background: var(--cyan);
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0, 194, 203, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}
.wa-fab svg { width: 24px; height: 24px; fill: #fff; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero { padding: 60px 0; }
  .hero-inner, .services-inner, .contact-grid, .calc-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-content h1 { font-size: 3.2rem; }
  .hero-content p { margin: 0 auto 30px; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .nav-links, .nav-wa { display: none; }
  .hamburger { display: block; }
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.5rem; }
  .trust-inner { gap: 30px; flex-wrap: wrap; padding: 20px 0; }
  .trust-item { font-size: 0.9rem; }
  .calc-card { padding: 40px 20px; border-radius: 24px; }
  .calc-card h2 { font-size: 1.8rem; margin-bottom: 30px; }
  .calc-content { gap: 30px; }
  .calc-results { padding: 25px; }
  .res-total .val { font-size: 1.8rem; }
  .res-total .lbl { font-size: 1.2rem; }
  .services { padding: 60px 0; }
  .services-inner { gap: 40px; }
  .services-title h2 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-info h2 { font-size: 2rem; }
  .contact-grid { gap: 50px; }
  .form-split { grid-template-columns: 1fr; }
}
