/* ═══════════════════════════════════════════
   CrediRise Solutions LLP — Main Stylesheet
   DESIGN TOKENS  (derived from the logo)
   ═══════════════════════════════════════════ */
:root {
  --navy:        #191952;
  --navy-light:  #232370;
  --navy-dark:   #0f0f3a;
  --gold:        #F4A836;
  --gold-hover:  #e69a20;
  --green:       #3BB273;
  --red:         #E04040;
  --orange:      #F27830;
  --white:       #ffffff;
  --off-white:   #F5F6FA;
  --gray-100:    #EDEEF3;
  --gray-200:    #D0D2DC;
  --gray-600:    #6B6E80;
  --text:        #222244;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(25,25,82,.06);
  --shadow-md:   0 8px 30px rgba(25,25,82,.10);
  --shadow-lg:   0 16px 48px rgba(25,25,82,.14);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --whatsapp:    #25D366;
}

/* ═══════════════════ RESET ═══════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit; border: none; outline: none; background: none;
}

/* ═══════════════════ UTILITIES ═══════════════════ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section { padding: 100px 0; }
.section-label {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  line-height: 1.2; margin-bottom: 18px; color: var(--navy);
}
.section-desc {
  font-size: clamp(16px, 1.6vw, 20px); line-height: 1.7;
  color: var(--gray-600); max-width: 820px; margin: 0 auto;
}

/* ═══════════════════ NAVBAR ═══════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 14px 32px;
}
.navbar .logo-img { height: 44px; }
.navbar nav { display: flex; align-items: center; gap: 6px; }
.navbar nav a {
  font-size: 15px; font-weight: 500; padding: 8px 18px;
  border-radius: 8px; transition: all var(--transition);
  color: var(--navy);
}
.navbar nav a:hover { background: var(--off-white); color: var(--gold); }
.navbar .nav-cta {
  background: var(--navy); color: var(--white) !important;
  font-weight: 600; border-radius: 8px; margin-left: 8px;
}
.navbar .nav-cta:hover { background: var(--navy-light) !important; }
.hamburger { display: none; font-size: 22px; cursor: pointer; color: var(--navy); background: none; border: none; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #0d0d30 100%);
  padding: 180px 24px 120px; text-align: center; color: var(--white);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 20% 60%, rgba(244,168,54,.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 80% 30%, rgba(59,178,115,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 6px 20px 6px 8px; font-size: 13px;
  font-weight: 500; margin-bottom: 32px; backdrop-filter: blur(6px);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 800;
  line-height: 1.15; margin-bottom: 24px;
  background: linear-gradient(to right, #fff 30%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .subtitle {
  font-size: clamp(16px, 1.8vw, 22px); font-weight: 300;
  line-height: 1.65; max-width: 720px; margin: 0 auto 44px;
  opacity: .85;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy); font-weight: 700;
  padding: 16px 36px; border-radius: 10px; font-size: 17px;
  cursor: pointer; transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(244,168,54,.35);
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,168,54,.45); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,.25); color: var(--white);
  font-weight: 600; padding: 14px 32px; border-radius: 10px;
  font-size: 17px; cursor: pointer; transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex; justify-content: center; gap: 60px;
  margin-top: 72px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stats .stat h3 {
  font-size: 36px; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stats .stat p { font-size: 14px; opacity: .6; font-weight: 400; margin-top: 4px; }

/* ═══════════════════ TRUST BAR ═══════════════════ */
.trust-bar {
  background: var(--off-white); padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--gray-600); }
.trust-item i { color: var(--green); font-size: 18px; }

/* ═══════════════════ WHAT IS / HOW WE HELP ═══════════════════ */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-top: 48px;
}
.intro-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 44px;
  transition: all var(--transition);
}
.intro-card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-4px); }
.intro-card .icon-wrap {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
}
.intro-card:first-child .icon-wrap { background: linear-gradient(135deg, rgba(244,168,54,.15), rgba(242,120,48,.10)); color: var(--gold); }
.intro-card:last-child .icon-wrap  { background: linear-gradient(135deg, rgba(59,178,115,.15), rgba(59,178,115,.08)); color: var(--green); }
.intro-card h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 12px; text-align: center; }
.intro-card p { font-size: 16px; color: var(--gray-600); line-height: 1.7; text-align: center; }

/* ═══════════════════ SERVICES ═══════════════════ */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px 32px 36px; text-align: center;
  border: 1px solid var(--gray-100);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--gold), var(--green));
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card .icon-circle {
  width: 88px; height: 88px; border-radius: 50%;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.service-card:nth-child(1) .icon-circle { background: linear-gradient(135deg, #FFF3DE, #FFEBC8); color: var(--orange); }
.service-card:nth-child(2) .icon-circle { background: linear-gradient(135deg, #E0F0FF, #C8E2FF); color: #3B7DD8; }
.service-card:nth-child(3) .icon-circle { background: linear-gradient(135deg, #DEFBE6, #C4F5D2); color: var(--green); }
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.35; }
.service-card ul { text-align: left; padding-left: 0; }
.service-card ul li {
  font-size: 15px; color: var(--gray-600); padding: 6px 0 6px 28px;
  position: relative; line-height: 1.5;
}
.service-card ul li::before {
  content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; color: var(--green); font-size: 14px; top: 8px;
}

/* ── Why it Matters banner ── */
.why-banner {
  margin-top: 64px; background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg); padding: 52px 48px;
  text-align: center; color: var(--white);
}
.why-banner h3 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.why-banner p { font-size: 18px; opacity: .8; max-width: 780px; margin: 0 auto; }

/* ═══════════════════ PRICING ═══════════════════ */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 48px;
}
.pricing-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.pricing-card .card-header {
  padding: 36px 36px 28px; text-align: center;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-card .card-header .tag {
  display: inline-block; padding: 4px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 12px;
}
.pricing-card:first-child .tag { background: rgba(244,168,54,.12); color: var(--gold); }
.pricing-card:last-child .tag  { background: rgba(59,178,115,.12); color: var(--green); }
.pricing-card .card-header h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pricing-card .card-header p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }
.pricing-card .card-body { padding: 28px 36px; flex: 1; text-align: left; }
.pricing-card .card-body .label { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 14px; }
.pricing-card .card-body ul li {
  font-size: 15px; color: var(--gray-600); padding: 7px 0 7px 28px;
  position: relative; line-height: 1.5;
}
.pricing-card .card-body ul li::before {
  content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; font-size: 14px; top: 9px;
}
.pricing-card:first-child .card-body ul li::before { color: var(--gold); }
.pricing-card:last-child .card-body ul li::before  { color: var(--green); }
.pricing-card .card-footer { padding: 0 36px 36px; }
.pricing-card .card-footer a {
  display: block; text-align: center; padding: 16px;
  border-radius: 10px; font-size: 17px; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
}
.pricing-card:first-child .card-footer a {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 16px rgba(244,168,54,.3);
}
.pricing-card:first-child .card-footer a:hover { background: var(--gold-hover); }
.pricing-card:last-child .card-footer a {
  background: var(--navy); color: var(--white);
  box-shadow: 0 4px 16px rgba(25,25,82,.2);
}
.pricing-card:last-child .card-footer a:hover { background: var(--navy-light); }

/* ── CTA Banner ── */
.cta-banner {
  margin-top: 64px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #2a2a7a 100%);
  border-radius: var(--radius-lg); padding: 60px 48px;
  text-align: center; color: var(--white);
}
.cta-banner::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(244,168,54,.15); filter: blur(40px);
}
.cta-banner h2 { font-size: 32px; font-weight: 700; margin-bottom: 10px; }
.cta-banner p { font-size: 20px; opacity: .8; margin-bottom: 28px; }
.cta-banner .btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy); font-weight: 700;
  padding: 16px 40px; border-radius: 10px; font-size: 18px;
  cursor: pointer; transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(244,168,54,.4);
}
.cta-banner .btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }

/* ═══════════════════ ABOUT ═══════════════════ */
.about-section { background: var(--off-white); }
.about-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.about-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; text-align: center;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.about-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.about-card .icon-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 24px;
}
.about-card:nth-child(1) .icon-wrap { background: linear-gradient(135deg, rgba(244,168,54,.15), rgba(242,120,48,.08)); color: var(--gold); }
.about-card:nth-child(2) .icon-wrap { background: linear-gradient(135deg, rgba(59,178,115,.15), rgba(59,178,115,.06)); color: var(--green); }
.about-card:nth-child(3) .icon-wrap { background: linear-gradient(135deg, rgba(25,25,82,.12), rgba(25,25,82,.06)); color: var(--navy); }
.about-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.about-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

.approach-pills {
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-top: 12px;
}
.approach-pills span {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 100px; padding: 8px 20px; font-size: 14px;
  font-weight: 500; color: var(--navy);
}
.approach-pills span i { color: var(--gold); font-size: 12px; }

/* ═══════════════════ CONTACT ═══════════════════ */
.contact-section { padding-bottom: 0; }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.contact-image {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; padding: 60px; text-align: center; color: var(--white);
}
.contact-image .big-icon { font-size: 64px; color: var(--gold); margin-bottom: 28px; opacity: .9; }
.contact-image h3 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.contact-image p { font-size: 16px; opacity: .7; line-height: 1.6; max-width: 320px; }
.contact-form { padding: 48px; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px; letter-spacing: .3px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; border: 1.5px solid var(--gray-200);
  padding: 14px 16px; border-radius: 10px; font-size: 15px;
  color: var(--text); background: var(--white);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray-200); }
.contact-form select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6E80' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.contact-form textarea { height: 100px; resize: vertical; }
.file-upload {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px dashed var(--gray-200); border-radius: 10px;
  padding: 14px 16px; cursor: pointer; transition: border-color var(--transition);
  font-size: 14px; color: var(--gray-600);
}
.file-upload:hover { border-color: var(--gold); }
.file-upload i { color: var(--gold); font-size: 18px; }
.file-upload input { display: none; }
.submit-btn {
  width: 100%; background: var(--gold); color: var(--navy);
  font-weight: 700; padding: 16px; border-radius: 10px; font-size: 17px;
  cursor: pointer; transition: all var(--transition); margin-top: 8px;
  box-shadow: 0 4px 16px rgba(244,168,54,.3);
}
.submit-btn:hover { background: var(--gold-hover); transform: translateY(-2px); }
.form-note {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--gray-600); margin-top: 16px; line-height: 1.5;
}
.form-note i { color: var(--green); margin-top: 2px; }

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testimonials-section { text-align: center; }
.testimonial-card {
  max-width: 780px; margin: 40px auto 0;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 48px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; left: 32px;
  font-size: 80px; color: var(--gold); opacity: .2;
  font-family: Georgia, serif; line-height: 1;
}
.stars { margin-bottom: 18px; }
.stars i { color: var(--gold); font-size: 20px; margin: 0 2px; }
.testimonial-card blockquote {
  font-size: 19px; line-height: 1.7; color: var(--text);
  font-style: italic; margin-bottom: 20px;
}
.testimonial-card .author { font-weight: 700; font-size: 16px; color: var(--navy); }

/* ═══════════════════ LINKEDIN POSTS SECTION ═══════════════════ */
.linkedin-section { background: var(--off-white); }
.linkedin-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.linkedin-post {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-100);
  transition: all var(--transition); cursor: pointer;
  display: flex; flex-direction: column;
}
.linkedin-post:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-6px);
  border-color: transparent;
}
.linkedin-post .thumb {
  width: 100%; aspect-ratio: 16 / 10; overflow: hidden;
  position: relative; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.linkedin-post .thumb .placeholder-icon {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.25); gap: 8px;
}
.linkedin-post .thumb .placeholder-icon i { font-size: 40px; }
.linkedin-post .thumb .placeholder-icon span { font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.linkedin-post .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition);
}
.linkedin-post:hover .thumb img { transform: scale(1.05); }
.linkedin-post .post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.linkedin-post .post-meta {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.linkedin-post .post-meta .li-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #0A66C2; color: #fff; padding: 3px 10px;
  border-radius: 4px; font-size: 11px; font-weight: 600;
}
.linkedin-post .post-meta .li-badge i { font-size: 12px; }
.linkedin-post .post-meta .post-date { font-size: 12px; color: var(--gray-600); }
.linkedin-post .post-title {
  font-size: 16px; font-weight: 600; color: var(--navy);
  line-height: 1.45; margin-bottom: 8px;
}
.linkedin-post .post-excerpt {
  font-size: 14px; color: var(--gray-600); line-height: 1.6;
  flex: 1; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.linkedin-post .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #0A66C2;
  transition: gap var(--transition);
}
.linkedin-post:hover .read-more { gap: 10px; }
.linkedin-follow-cta {
  margin-top: 40px; text-align: center;
}
.linkedin-follow-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0A66C2; color: #fff; padding: 14px 32px;
  border-radius: 10px; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(10,102,194,.25);
}
.linkedin-follow-btn:hover { background: #004182; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,102,194,.35); }

/* ═══════════════════ WHATSAPP STICKY BUTTON ═══════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0;
}
.whatsapp-float .wa-tooltip {
  background: var(--white); color: var(--text);
  padding: 10px 18px; border-radius: 12px 12px 4px 12px;
  font-size: 14px; font-weight: 500; line-height: 1.4;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
  margin-bottom: 12px; max-width: 240px;
  opacity: 0; transform: translateY(8px) scale(.95);
  transition: all .3s ease; pointer-events: none;
  position: relative;
}
.whatsapp-float .wa-tooltip::after {
  content: ''; position: absolute; bottom: -6px; right: 24px;
  width: 12px; height: 12px; background: var(--white);
  transform: rotate(45deg); box-shadow: 2px 2px 4px rgba(0,0,0,.06);
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.whatsapp-float .wa-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; cursor: pointer;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: all var(--transition);
  position: relative;
}
.whatsapp-float .wa-btn:hover {
  transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5);
}
.whatsapp-float .wa-btn::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 3px solid var(--whatsapp);
  animation: wa-ping 2.5s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes wa-ping {
  0%   { transform: scale(1); opacity: .6; }
  80%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
.whatsapp-float .wa-btn .notif-dot {
  position: absolute; top: 2px; right: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red); border: 2px solid var(--white);
  font-size: 0;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--navy); color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer .logo-img { height: 44px; margin-bottom: 20px; }
.footer-col h4 { font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; color: var(--gold); }
.footer-col p { font-size: 15px; line-height: 1.8; opacity: .7; }
.footer-col a { display: block; font-size: 15px; line-height: 2; opacity: .7; transition: all var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.06); font-size: 16px;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); opacity: 1; }
.footer-bar {
  text-align: center; padding: 20px 24px; font-size: 14px;
  opacity: .5; margin-top: 32px;
}
.footer-bar i { color: var(--gold); opacity: 1; }

/* ═══════════════════ SCROLL ANIMATIONS ═══════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 960px) {
  .intro-grid, .services-grid, .pricing-grid, .about-grid,
  .contact-wrap, .footer-grid, .linkedin-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .contact-image { min-height: 300px; }
  .navbar nav { display: none; }
  .navbar nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 20px; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-md); }
  .hamburger { display: block; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-float .wa-btn { width: 56px; height: 56px; font-size: 28px; }
}
@media (max-width: 600px) {
  .hero { padding: 140px 16px 80px; }
  .section { padding: 64px 0; }
  .cta-banner, .why-banner { padding: 40px 24px; }
  .contact-form { padding: 32px 24px; }
  .pricing-card .card-header, .pricing-card .card-body, .pricing-card .card-footer { padding-left: 24px; padding-right: 24px; }
}
