/* ===========================
   MBA ProjectWala - Global CSS
   =========================== */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Nunito+Sans:wght@300;400;600;700&display=swap");

:root {
  --black: #111111;
  --orange: #e85d04;
  --orange-dark: #c94e00;
  --orange-light: #ff7f2a;
  --white: #ffffff;
  --off-white: #fff8f3;
  --gray-light: #f5f5f5;
  --gray-mid: #000000;
  --gray-dark: #333333;
  --nav-h: 86px;
  --ticker-h: 38px;
  --total-top: 124px;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(232, 93, 4, 0.15);
  --transition: all 0.28s 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: "Nunito Sans", sans-serif;
  color: var(--black);
  background: var(--white);
  padding-top: var(--total-top);
  min-height: 100vh;
}

/* ---- TICKER ---- */
.ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--black);
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 2px solid var(--orange);
}
.ticker-label {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 50%,
    calc(100% - 12px) 100%,
    0 100%
  );
  padding-right: 28px;
  z-index: 1001;
}
.ticker-track {
  display: flex;
  animation: ticker-scroll 38s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0 40px;
  opacity: 0.9;
  letter-spacing: 0.3px;
}
.ticker-track span::before {
  content: "★ ";
  color: var(--orange);
  margin-right: 4px;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--white);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--orange);
}
.nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-dark);
  font-size: 0.87rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: rgba(232, 93, 4, 0.07);
}
.nav-links a.cta-link {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 6px;
}
.nav-links a.cta-link:hover {
  background: var(--orange-dark);
}
.nav-phone {
  font-size: 0.8rem;
  color: var(--gray-dark);
  font-weight: 600;
}
.nav-phone a {
  color: var(--orange);
  text-decoration: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--total-top);
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 998;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav a {
  display: block;
  padding: 13px 24px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: var(--gray-dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.mobile-nav a:hover {
  color: var(--orange);
  background: var(--off-white);
}
.mobile-nav a.cta-link {
  background: var(--orange);
  color: var(--white);
  margin: 12px;
  border-radius: 8px;
  border: none;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(
    135deg,
    var(--black) 0%,
    #2a2a2a 60%,
    #1a1a1a 100%
  );
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(232, 93, 4, 0.18) 0%,
    transparent 60%
  );
}
.hero-pattern {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    45deg,
    var(--orange) 0,
    var(--orange) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
}
.hero-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.4);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-badge::before {
  content: "●";
  font-size: 0.5rem;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span {
  color: var(--orange);
}
.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.4);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--orange);
  font-weight: 900;
  line-height: 1;
}
.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---- SECTIONS ---- */
.section {
  padding: 72px 24px;
}
.section.bg-light {
  background: var(--off-white);
}
.section.bg-dark {
  background: var(--black);
}
.container {
  max-width: 1260px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--gray-mid);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}
.section-head {
  text-align: center;
  margin-bottom: 52px;
}
.section-head .section-sub {
  margin: 0 auto;
}

/* ---- CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
a {
  text-decoration: none;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card:hover::before {
  transform: scaleX(1);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 93, 4, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}
.card p {
  color: var(--gray-mid);
  font-size: 0.88rem;
  line-height: 1.65;
}
.card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.card .tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  background: rgba(232, 93, 4, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* ---- WHY CHOOSE US ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(232, 93, 4, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-text h4 {
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.why-text p {
  color: var(--gray-mid);
  font-size: 0.85rem;
  line-height: 1.6;
}
.why-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.why-image-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #f5f0eb, #ffe8d6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.why-image-placeholder span {
  font-size: 4rem;
}
.why-image-placeholder p {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---- PROCESS ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}
.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.step p {
  color: var(--gray-mid);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.testimonial .stars {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.testimonial p {
  color: var(--gray-dark);
  font-size: 0.88rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial .author {
  font-weight: 700;
  font-size: 0.85rem;
}
.testimonial .role {
  color: var(--gray-mid);
  font-size: 0.78rem;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-dark) 100%
  );
  padding: 56px 24px;
  text-align: center;
}
.cta-band h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-size: 1rem;
}
.cta-band .btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.cta-band .btn-white:hover {
  background: var(--off-white);
}

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--black) 0%, #222 100%);
  padding: 56px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(232, 93, 4, 0.2) 0%,
    transparent 60%
  );
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header .breadcrumb {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.page-header .breadcrumb a {
  color: var(--orange);
  text-decoration: none;
}
.page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ---- FOOTER ---- */
.footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1260px;
  margin: 0 auto;
  padding-bottom: 48px;
}
.footer h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer p {
  font-size: 0.86rem;
  line-height: 1.75;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.86rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.86rem;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact-item a:hover {
  color: var(--orange);
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.social-link {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.social-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 1260px;
  margin: 0 auto;
}
.footer-logo img {
  height: 56px;
  margin-bottom: 16px;
  border-radius: 6px;
}

/* ---- PAGE CONTENT ---- */
.content-section {
  padding: 64px 24px;
}
.content-section .container {
  max-width: 1100px;
}
.project-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}
.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.project-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}
.project-card ul {
  list-style: none;
}
.project-card ul li {
  font-size: 0.84rem;
  color: var(--gray-mid);
  padding: 5px 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
  gap: 8px;
}
.project-card ul li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
}
.project-card ul li:last-child {
  border-bottom: none;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.84rem;
  margin-bottom: 6px;
  color: var(--gray-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  color: var(--black);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}
.form-submit:hover {
  background: var(--orange-dark);
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-card-icon {
  font-size: 1.5rem;
  margin-top: 2px;
}
.info-card h4 {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.info-card p,
.info-card a {
  color: var(--gray-mid);
  font-size: 0.86rem;
  text-decoration: none;
}
.info-card a:hover {
  color: var(--orange);
}

/* ---- ACCORDION ---- */
.accordion {
  max-width: 780px;
  margin: 40px auto 0;
}
.accordion-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-header {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  user-select: none;
}
.accordion-header:hover {
  background: var(--off-white);
}
.accordion-header .acc-icon {
  transition: var(--transition);
  color: var(--orange);
  font-size: 1rem;
}
.accordion-header.open .acc-icon {
  transform: rotate(45deg);
}
.accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.accordion-body.open {
  max-height: 300px;
  padding: 14px 20px 18px;
}
.accordion-body p {
  color: var(--gray-mid);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ---- ABOUT ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.8rem;
}
.team-card h4 {
  font-weight: 700;
  font-size: 0.95rem;
}
.team-card p {
  color: var(--gray-mid);
  font-size: 0.82rem;
  margin-top: 4px;
}

/* ---- FLOATING CONTACT WIDGET (always visible) ---- */
.floating-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.fw-item {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transition: var(--transition);
  position: relative;
}
.fw-item:hover {
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

/* Tooltip label on hover */
.fw-item::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  transform: translateY(-50%) translateX(8px);
}
.fw-item:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* WhatsApp - green with pulse */
.fw-item.fw-whatsapp {
  background: #25d366;
}
.fw-item.fw-whatsapp::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: fw-pulse 2s ease-out infinite;
}

/* Email - red */
/* .fw-item.fw-email { background: linear-gradient(135deg, #EA4335, #d93025); } */

/* Phone - blue */
/* .fw-item.fw-phone { background: linear-gradient(135deg, #37ca6d, #25D366); } */

@keyframes fw-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .floating-widget {
    bottom: 18px;
    right: 14px;
    gap: 12px;
  }
  .fw-item {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .fw-item::after {
    display: none;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  :root {
    --nav-h: 76px;
    --total-top: 114px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 24px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn {
    justify-content: center;
  }
}
