/* ============================================================
   BizConnect — Public Website Stylesheet
   Brand Colors: Deep Navy, BizConnect Green, White, Light Gray
   ============================================================ */

:root {
  --navy-900: #0a1929;
  --navy-800: #0f2942;
  --navy-700: #1a3a5c;
  --navy-600: #244b73;
  --navy-500: #2d5a8a;
  --green-600: #0a7c43;
  --green-500: #0d9450;
  --green-400: #16a34a;
  --green-300: #4ade80;
  --green-100: #dcfce7;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --white: #ffffff;
  --success: #16a34a;
  --warning: #f59e0b;
  --error: #dc2626;

  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;

  --shadow-sm: 0 1px 2px rgba(10, 25, 41, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 25, 41, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 25, 41, 0.12);
  --shadow-xl: 0 24px 48px rgba(10, 25, 41, 0.16);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* === Base === */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
}

.section-padding {
  padding: 80px 0;
}
.bg-light-gray {
  background: var(--gray-50);
}

/* === Section Headers === */
.section-header {
  max-width: 700px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-500);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* === Page Header === */
.page-header {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 120px 0 60px;
  color: var(--white);
}

.page-header .section-label {
  color: var(--green-300);
}

.page-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* === Navbar === */
.bizconnect-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
  transition: all 0.3s ease;
}

.bizconnect-navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy-900);
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.125rem;
}

.brand-text {
  color: var(--navy-900);
}
.brand-accent {
  color: var(--green-500);
}

.bizconnect-navbar .nav-link {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.bizconnect-navbar .nav-link:hover {
  color: var(--navy-900);
  background: var(--gray-100);
}

.btn-biz-nav {
  background: var(--navy-900);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
}

.btn-biz-nav:hover {
  background: var(--navy-700);
  color: var(--white);
  transform: translateY(-1px);
}

/* === Hero Section === */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--navy-900) 0%,
    var(--navy-800) 50%,
    var(--navy-700) 100%
  );
  position: relative;
  overflow: hidden;
  /* padding-top: 80px; */
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 80, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 148, 80, 0.15);
  color: var(--green-300);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(13, 148, 80, 0.3);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* === Hero Visual === */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .hero-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(13, 148, 80, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
} */

.hero-orb {
  width: 420px;
  height: 443px;

  background:
    radial-gradient(circle, rgba(13, 148, 80, 0.2) 0%, transparent 70%),
    url("/images/hero.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 50%;
  z-index: 1;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-card strong {
  color: var(--white);
  font-size: 1rem;
  display: block;
}
.hero-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  margin: 0;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero-card-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}
.hero-card-2 {
  top: 45%;
  right: 0%;
  animation-delay: 1.5s;
}
.hero-card-3 {
  bottom: 10%;
  left: 15%;
  animation-delay: 3s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* === Buttons === */
.btn-biz-primary {
  background: var(--green-500);
  color: var(--white);
  font-weight: 600;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.btn-biz-primary:hover {
  background: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 80, 0.3);
}

.btn-biz-outline {
  background: transparent;
  color: var(--navy-900);
  font-weight: 600;
  border: 2px solid var(--navy-900);
  padding: 10px 26px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.btn-biz-outline:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-biz-light {
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
}

.btn-biz-light:hover {
  background: var(--gray-100);
  color: var(--navy-900);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  font-weight: 600;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* === Service Cards === */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green-100), var(--green-300));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  font-size: 1.75rem;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  transform: scale(1.05);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--navy-900);
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin: 0;
}

/* === Process Steps === */
.process-step {
  text-align: center;
  position: relative;
  padding: 20px;
}

.process-number {
  width: 44px;
  height: 44px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}

.process-icon {
  font-size: 2rem;
  color: var(--green-500);
  margin-bottom: 12px;
  display: block;
}

.process-step p {
  font-weight: 600;
  color: var(--navy-900);
  margin: 0;
}

/* === Package Cards === */
.package-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.package-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.package-name {
  font-size: 1.25rem;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.package-short-desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 0;
  flex-grow: 1;
}

/* === Package Detail === */
.package-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.package-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

.package-detail-name {
  font-size: 2rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.package-detail-type {
  font-size: 1rem;
  color: var(--green-500);
  font-weight: 600;
  margin-bottom: 20px;
}

.package-detail-desc {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.package-features-section {
  margin-top: 32px;
}

.features-heading {
  font-size: 1.375rem;
  margin-bottom: 20px;
}

.package-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 1rem;
}

.package-features-list li:last-child {
  border-bottom: none;
}

.package-features-list i {
  color: var(--green-500);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.package-pricing-card {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.pricing-header h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin: 0 0 20px;
}

.pricing-price {
  text-align: center;
  margin-bottom: 24px;
}

.price-value {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--white);
}

.price-unit {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.pricing-best-for {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.pricing-best-for i {
  color: var(--green-300);
  font-size: 1.25rem;
}
.pricing-best-for strong {
  color: var(--white);
  display: block;
  font-size: 0.875rem;
}
.pricing-best-for p {
  color: rgba(255, 255, 255, 0.7);
  margin: 2px 0 0;
  font-size: 0.9375rem;
}

/* === Industry Cards === */
.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.industry-card i {
  font-size: 2.25rem;
  color: var(--green-500);
  margin-bottom: 14px;
  display: block;
}

.industry-card p {
  font-weight: 600;
  color: var(--navy-900);
  margin: 0;
  font-size: 0.9375rem;
}

.col-lg-2-4 {
  flex: 0 0 auto;
  width: 20%;
}
@media (max-width: 991px) {
  .col-lg-2-4 {
    width: 33.333%;
  }
}
@media (max-width: 575px) {
  .col-lg-2-4 {
    width: 50%;
  }
}

/* === Why Choose Cards === */
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-100), var(--green-300));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--navy-900);
}
.why-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin: 0;
}

/* === Review Cards === */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.review-stars {
  color: #fbbf24;
  font-size: 1.125rem;
}

.review-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

.review-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-photo-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.9375rem;
}
.review-company {
  color: var(--gray-500);
  font-size: 0.8125rem;
}

/* === Empty State === */
.empty-state {
  padding: 60px 20px;
}

.empty-icon {
  font-size: 3.5rem;
  color: var(--gray-300);
  display: block;
  margin-bottom: 20px;
}

.empty-state h3 {
  font-size: 1.5rem;
  color: var(--navy-900);
  margin-bottom: 12px;
}
.empty-state p {
  color: var(--gray-500);
  font-size: 1rem;
}

/* === CTA Section === */
.cta-section {
  padding: 60px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  color: var(--white);
}

.cta-box h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 14px;
}
.cta-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  margin-bottom: 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === About Page === */
.lead-text {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
}

.about-stat i {
  font-size: 2rem;
  color: var(--green-500);
}
.about-stat h3 {
  font-size: 1.125rem;
  margin: 0;
}
.about-stat p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 2px 0 0;
}

.about-visual {
  height: 100%;
}

.about-card {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: var(--white);
  height: 100%;
}

.about-card i {
  font-size: 3rem;
  color: var(--green-300);
  margin-bottom: 24px;
}
.about-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.about-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* === Timeline (How We Work) === */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-500), var(--navy-700));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -40px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-number {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 3px solid var(--green-500);
  color: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  z-index: 2;
  position: relative;
}

.timeline-step-icon {
  position: absolute;
  font-size: 1.25rem;
  color: var(--green-500);
  opacity: 0;
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-left: 30px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
  transform: translateX(6px);
}

.timeline-content h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
  color: var(--navy-900);
}
.timeline-content p {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* === Contact Page === */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
}

.contact-heading {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.contact-lead {
  font-size: 1.0625rem;
  color: var(--gray-500);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.contact-method:hover {
  background: var(--gray-100);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-900);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-method-icon.whatsapp {
  background: #25d366;
}

.contact-method strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.9375rem;
}
.contact-method p {
  color: var(--gray-500);
  margin: 2px 0 0;
  font-size: 0.875rem;
}

.contact-cta-card {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: var(--white);
  text-align: center;
}

.contact-cta-card h3 {
  color: var(--white);
  font-size: 1.375rem;
}
.contact-cta-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

/* === QR Code === */
.qr-wrapper {
  text-align: center;
}

.qr-code {
  display: inline-block;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  line-height: 0;
}

.qr-code svg,
.qr-code img {
  width: 140px;
  height: 140px;
}

.qr-code canvas {
  width: 140px !important;
  height: 140px !important;
}

.qr-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin: 0;
}

.footer .qr-code {
  background: var(--white);
  padding: 12px;
}
.footer .qr-label {
  color: rgba(255, 255, 255, 0.5);
}

/* === Footer === */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 20px;
}

.footer-brand {
  margin-bottom: 16px;
}

.brand-text-light {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
}

.footer-tagline {
  font-weight: 700;
  color: var(--green-300);
  font-size: 0.8125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-heading {
  color: var(--white);
  font-size: 1.0625rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--green-300);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact i {
  color: var(--green-300);
  font-size: 1rem;
}

.footer-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.footer-cta p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
}

/* === WhatsApp Floating Button === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 8px 24px rgba(37, 211, 102, 0.4),
      0 0 0 12px rgba(37, 211, 102, 0.12);
  }
}

/* === Breadcrumb === */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 16px;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb-item a:hover {
  color: var(--green-300);
}
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}

/* === Responsive === */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }
  .section-title {
    font-size: 1.875rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .package-pricing-card {
    position: static;
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    font-size: 1.125rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .section-title {
    font-size: 1.625rem;
  }
  .page-title {
    font-size: 1.875rem;
  }
  .section-padding {
    padding: 48px 0;
  }
  .cta-box {
    padding: 40px 24px;
  }
  .cta-box h2 {
    font-size: 1.5rem;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .timeline {
    padding-left: 30px;
  }
  .timeline-content {
    margin-left: 20px;
    padding: 20px;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
  .package-detail-card {
    padding: 28px 20px;
  }
  .contact-info-card,
  .contact-cta-card {
    padding: 32px 24px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.875rem;
  }
  .navbar-brand {
    font-size: 1.25rem;
  }
  .brand-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

/* === Main padding for fixed navbar === */
main {
  padding-top: 70px;
}

/* === Animations === */
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
