/* ============================================
   CORPORA - Company Profile Theme
   By IndoKoding.net
   Bootstrap 5.3 + Custom CSS
   ============================================ */

/* ── Google Fonts (Poppins) via @import ──── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ────────────────────────── */
:root {
  --primary:        #2563EB;
  --primary-dark:   #1D4ED8;
  --primary-light:  #EFF6FF;
  --secondary:      #0F172A;
  --accent:         #F59E0B;
  --success:        #10B981;
  --gray-100:       #F8FAFC;
  --gray-200:       #F1F5F9;
  --gray-300:       #E2E8F0;
  --gray-500:       #64748B;
  --gray-700:       #334155;
  --gray-900:       #0F172A;
  --white:          #FFFFFF;

  --font-base:      'Poppins', sans-serif;
  --radius-sm:      0.375rem;
  --radius:         0.75rem;
  --radius-lg:      1.25rem;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:         0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 10px 40px rgba(0,0,0,.12);
  --transition:     all .3s ease;
}

/* ── Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--gray-700);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* ── Utility Classes ─────────────────────── */
.text-primary   { color: var(--primary) !important; }
.text-accent    { color: var(--accent) !important; }
.text-muted     { color: var(--gray-500) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }
.bg-dark-navy   { background-color: var(--secondary) !important; }
.bg-gray-100    { background-color: var(--gray-100) !important; }

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
}

.divider {
  width: 50px;
  height: 4px;
  background: var(--primary);
  border-radius: 100px;
  margin: 1rem 0 1.5rem;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  font-family: var(--font-base);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: .65rem 1.6rem;
  transition: var(--transition);
  letter-spacing: .01em;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,.3);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: var(--white);
}

.btn-lg { padding: .85rem 2.2rem; font-size: 1rem; }
.btn-icon { display: inline-flex; align-items: center; gap: .5rem; }

/* ── Navbar ──────────────────────────────── */
#mainNav {
  padding: 1.1rem 0;
  transition: var(--transition);
  background: transparent;
}

#mainNav.scrolled {
  background: var(--white) !important;
  padding: .75rem 0;
  box-shadow: var(--shadow);
}

#mainNav.scrolled .navbar-brand,
#mainNav.scrolled .nav-link { color: var(--secondary) !important; }

#mainNav.scrolled .btn-outline-white {
  border-color: var(--primary);
  color: var(--primary);
}
#mainNav.scrolled .btn-outline-white:hover {
  background: var(--primary);
  color: var(--white);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: -.01em;
}
.navbar-brand span { color: var(--accent); }

.nav-link {
  font-weight: 500;
  font-size: .95rem;
  color: rgba(255,255,255,.85) !important;
  padding: .4rem .85rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,.12);
}

/* Solid navbar (inner pages) */
#mainNav.navbar-solid {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
#mainNav.navbar-solid .navbar-brand,
#mainNav.navbar-solid .nav-link { color: var(--secondary) !important; }
#mainNav.navbar-solid .nav-link:hover,
#mainNav.navbar-solid .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}
#mainNav.navbar-solid .btn-outline-white {
  border-color: var(--primary);
  color: var(--primary);
}
#mainNav.navbar-solid .btn-outline-white:hover {
  background: var(--primary);
  color: var(--white);
}

@media (max-width: 991.98px) {
  #mainNav.bg-transparent,
  #mainNav { background: var(--secondary) !important; }

  .navbar-collapse { padding: 1rem 0; }
  .nav-link { padding: .5rem 0 !important; }
}

/* ── Hero Section ────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #1D4ED8 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37,99,235,.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,158,11,.12) 0%, transparent 60%);
}

.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  background: var(--white);
}
.hero-shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-shape-2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }
.hero-shape-3 { width: 150px; height: 150px; top: 30%; left: 10%; opacity: .04; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title span { color: var(--accent); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-top: .2rem;
}

.hero-image-wrap {
  position: relative;
  padding: 2rem;
}
.hero-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: .9rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--secondary);
  animation: float-y 4s ease-in-out infinite;
  z-index: 2;
}
.hero-float-card .icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-float-card-1 { bottom: 2rem; left: -1rem; animation-delay: 0s; }
.hero-float-card-2 { top: 2rem; right: -1rem; animation-delay: 2s; }

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

/* ── Clients Strip ───────────────────────── */
.clients-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  padding: 2.5rem 0;
}
.clients-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.client-logo {
  opacity: .4;
  filter: grayscale(100%);
  transition: var(--transition);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.client-logo:hover { opacity: .8; filter: none; }

/* ── Stats Section ───────────────────────── */
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .9rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ── Service Cards ───────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}
.service-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.service-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
}
.service-link:hover { gap: .65rem; }

/* ── About Section ───────────────────────── */
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.about-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-label { font-size: .75rem; opacity: .8; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-item h6 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.feature-item p { font-size: .88rem; color: var(--gray-500); margin: 0; }

/* ── Portfolio Section ───────────────────── */
.filter-buttons { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.filter-btn {
  background: transparent;
  border: 1px solid var(--gray-300);
  border-radius: 100px;
  padding: .45rem 1.2rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.portfolio-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .5s ease;
}
.portfolio-card:hover img { transform: scale(1.06); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-info h5 { color: var(--white); font-size: 1rem; margin-bottom: .2rem; }
.portfolio-info span { font-size: .8rem; color: rgba(255,255,255,.65); }
.portfolio-link {
  margin-left: auto;
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1rem;
}
.portfolio-link:hover { background: var(--primary); color: var(--white); }

/* ── Testimonials ────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}
.testimonial-stars { color: var(--accent); margin-bottom: 1rem; }
.testimonial-text {
  font-size: .95rem;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author h6 { font-size: .9rem; font-weight: 700; margin: 0; }
.testimonial-author span { font-size: .8rem; color: var(--gray-500); }

/* ── CTA Section ─────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1D4ED8 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ── Page Header ─────────────────────────── */
.page-header {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(37,99,235,.2) 0%, transparent 70%);
}
.page-header h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); }
.page-breadcrumb .breadcrumb-item { font-size: .9rem; }
.page-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.6); }
.page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-breadcrumb .breadcrumb-divider { color: rgba(255,255,255,.4); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Team Cards ──────────────────────────── */
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-300);
  transition: var(--transition);
  height: 100%;
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.team-img-wrap { position: relative; overflow: hidden; }
.team-img-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .5s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-social {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,23,42,.8) 0%, transparent 100%);
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding: 1rem;
  transform: translateY(100%);
  transition: var(--transition);
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}
.team-social a:hover { background: var(--primary); border-color: var(--primary); }
.team-info { padding: 1.25rem; }
.team-info h5 { font-size: 1rem; font-weight: 700; margin-bottom: .15rem; }
.team-info span { font-size: .82rem; color: var(--primary); font-weight: 500; }

/* ── Process Steps ───────────────────────── */
.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}
.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--primary);
  position: relative;
  z-index: 1;
}
.step-connector {
  position: absolute;
  top: 2.5rem;
  left: 60%;
  right: -40%;
  height: 2px;
  background: var(--gray-300);
  border-top: 2px dashed var(--primary);
  opacity: .4;
}

/* ── Contact ─────────────────────────────── */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.contact-info-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius);
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info-card h6 { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: .35rem; }
.contact-info-card p { font-size: .95rem; color: var(--secondary); margin: 0; font-weight: 500; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-label { font-size: .88rem; font-weight: 600; color: var(--gray-700); margin-bottom: .4rem; }
.form-control, .form-select {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-family: var(--font-base);
  font-size: .9rem;
  color: var(--secondary);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .2rem rgba(37,99,235,.15);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-300);
}
.map-wrap iframe { display: block; }

/* ── FAQ ─────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-button {
  font-family: var(--font-base);
  font-weight: 600;
  font-size: .95rem;
  color: var(--secondary);
  background: var(--white);
}
.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-light);
  box-shadow: none;
}
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after {
  filter: invert(29%) sepia(98%) saturate(1745%) hue-rotate(213deg) brightness(97%) contrast(97%);
}
.accordion-body {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ── Blog Cards ──────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.blog-card-img { position: relative; overflow: hidden; }
.blog-card-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.blog-card-body { padding: 1.5rem; }
.blog-meta { font-size: .8rem; color: var(--gray-500); margin-bottom: .75rem; }
.blog-card-body h5 { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: .7rem; }
.blog-card-body p { font-size: .88rem; color: var(--gray-500); margin-bottom: 1rem; }
.blog-read-more { font-size: .85rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: .35rem; }
.blog-read-more:hover { gap: .6rem; }

/* ── Footer ──────────────────────────────── */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,.65);
  padding: 80px 0 0;
}
.footer-brand { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; display: inline-block; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: .9rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.footer-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: .25rem; }
.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: .83rem;
}

/* ── Back to Top ─────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}
#backToTop.show { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ── Animations ──────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 767.98px) {
  .section-padding { padding: 70px 0; }
  .hero-section { min-height: auto; padding: 7rem 0 4rem; }
  .hero-stats { gap: 1.5rem; margin-top: 2.5rem; }
  .hero-float-card { display: none; }
  .about-img-accent { display: none; }
  .about-badge { left: .5rem; top: .5rem; }
  .step-connector { display: none; }
  .page-header { padding: 7rem 0 3.5rem; }
}

@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .filter-buttons { justify-content: center; }
}
