:root {
  --navy: #1a2b5f;
  --gold: #f5a623;
  --white: #ffffff;
  --light: #f7f8fc;
  --gray: #6b7280;
  --dark: #111827;
  --border: #e5e7eb;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--navy); text-decoration: none;
}

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--dark);
  font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active {
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  font-weight: 600;
}

.nav-cta {
  background: var(--navy); color: var(--white);
  padding: 10px 22px; border-radius: 8px;
  font-size: 0.92rem; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #253d8a; transform: translateY(-1px); }

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 6% 60px;
  background: var(--white);
}

.hero-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 60px; max-width: 1200px; margin: 0 auto; width: 100%;
}

.hero-text { flex: 1; }

.hero-badge {
  display: inline-block;
  background: #eef2ff; color: var(--navy);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 20px; text-transform: uppercase;
}

.hero-text h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.1;
  color: var(--dark); margin-bottom: 8px;
}
.hero-text h1 span { color: var(--gold); }

.hero-text h2 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600; color: var(--navy); margin-bottom: 20px;
}

.hero-text p {
  font-size: 1rem; line-height: 1.75;
  color: var(--gray); max-width: 480px; margin-bottom: 36px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--navy); color: var(--white);
  padding: 13px 28px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #253d8a; transform: translateY(-2px); }

.btn-secondary {
  background: transparent; color: var(--navy);
  padding: 13px 28px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: 2px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--navy); transform: translateY(-2px); }

.hero-photo {
  flex: 0 0 380px;
  display: flex; justify-content: center; align-items: center;
}

.photo-circle {
  width: 340px; height: 340px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.photo-circle img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}

/* ─── SECTION COMMONS ─── */
section { padding: 90px 6%; }

.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--dark);
  line-height: 1.15; margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1rem; color: var(--gray);
  line-height: 1.7; max-width: 560px;
}

.section-header { margin-bottom: 52px; }

#services .section-label, #services .section-title, #services .section-subtitle,
#tools .section-label, #tools .section-title, #tools .section-subtitle,
#portfolio .section-label, #portfolio .section-title, #portfolio .section-subtitle,
#testimonials .section-label, #testimonials .section-title, #testimonials .section-subtitle,
#contact .section-label, #contact .section-title, #contact .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--navy);
  padding: 36px 6%;
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
}

.stat { text-align: center; color: var(--white); }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--gold);
}

/* Star rating — no emoji, use CSS */
.stat-number.with-star::after {
  content: ' ★';
  color: var(--gold);
  font-size: 1.6rem;
}

.stat-label { font-size: 0.85rem; opacity: 0.8; margin-top: 4px; }

/* ─── SERVICES ─── */
#services { background: var(--light); }

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card-new {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 30px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card-new:hover {
  box-shadow: 0 12px 40px rgba(26,43,95,0.1);
  transform: translateY(-4px);
}

.service-card-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-icon-new {
  width: 52px; height: 52px; border-radius: 12px;
  background: #eef2ff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}

/* Branded service icons using SVG background */
.service-icon-new.icon-lead { background: #fff3e0; }
.service-icon-new.icon-marketing { background: #fce4ec; }
.service-icon-new.icon-web { background: #e8f5e9; }
.service-icon-new.icon-admin { background: #e3f2fd; }

.service-card-new h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--navy); margin: 0;
}

.service-summary {
  font-size: 0.9rem; color: var(--gray);
  line-height: 1.7; margin: 0;
}

.service-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin: 0;
}

.service-bullets li {
  font-size: 0.88rem; color: var(--dark);
  display: flex; align-items: center; gap: 10px; line-height: 1.5;
}

.service-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── VA JOURNEY ─── */
#journey { background: var(--white); }

.journey-inner {
  display: flex; gap: 70px; align-items: flex-start; flex-wrap: wrap;
}

.journey-text { flex: 1; min-width: 280px; }
.journey-text p { font-size: 1rem; line-height: 1.8; color: var(--gray); margin-bottom: 16px; }

.timeline { flex: 1; min-width: 280px; }
.timeline-item { display: flex; gap: 18px; margin-bottom: 32px; }

.timeline-dot {
  flex: 0 0 14px; height: 14px;
  background: var(--gold); border-radius: 50%;
  margin-top: 5px; position: relative;
}

.timeline-dot::after {
  content: ''; position: absolute;
  top: 14px; left: 6px;
  width: 2px; height: calc(100% + 18px);
  background: var(--border);
}

.timeline-item:last-child .timeline-dot::after { display: none; }

.timeline-content h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--dark); margin-bottom: 4px;
}

.timeline-content span {
  font-size: 0.8rem; color: var(--gold);
  font-weight: 600; display: block; margin-bottom: 6px;
}

.timeline-content p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ─── TOOLS ─── */
#tools { background: var(--light); }

.tools-categories { display: flex; flex-direction: column; gap: 48px; }

.tools-category h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 16px;
}

/* ─── CAROUSEL ─── */
.carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll-left 90s linear infinite;
}

.carousel-track.carousel-reverse {
  animation: scroll-right 90s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 20px;
  min-width: fit-content;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}

.carousel-item:hover {
  box-shadow: 0 4px 16px rgba(26,43,95,0.08);
  transform: translateY(-2px);
  border-color: var(--navy);
}

.carousel-item p {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0;
}

/* ─── PORTFOLIO ─── */
#portfolio { background: var(--white); }

.portfolio-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--gray);
  padding: 8px 20px; border-radius: 25px;
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
}

.filter-btn:hover { border-color: var(--navy); color: var(--navy); }

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.portfolio-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
  height: 100%; display: flex; flex-direction: column;
}

.portfolio-card:hover {
  box-shadow: 0 12px 40px rgba(26,43,95,0.1);
  transform: translateY(-4px);
}

.portfolio-card.hidden { display: none; }

.portfolio-card.visible-card {
  animation: fadeInCard 0.3s ease forwards;
}

@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.portfolio-thumb {
  height: 180px; overflow: hidden; flex-shrink: 0;
}

.portfolio-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}

.portfolio-info {
  padding: 22px;
  border-top: 1px solid var(--border);
  flex: 1;
}

.portfolio-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  margin-bottom: 6px; color: var(--dark);
}

.portfolio-info p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

.card-category {
  display: inline-block;
  background: #eef2ff; color: var(--navy);
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonials-centered {
  grid-template-columns: minmax(280px, 560px) !important;
  justify-content: center !important;
}

.testimonial-card {
  background: var(--white); border-radius: 16px;
  padding: 32px 28px; border: 1px solid var(--border);
  display: flex; flex-direction: column;
  justify-content: space-between; height: 100%;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  font-style: normal;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem; color: var(--dark);
  line-height: 1.75; font-style: italic; margin-bottom: 20px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.85rem;
}

.author-info strong { display: block; font-size: 0.9rem; color: var(--dark); }
.author-info span { font-size: 0.8rem; color: var(--gray); }

/* ─── CONTACT ─── */
#contact {
  background: var(--navy);
  text-align: center;
}

#contact .section-label { color: var(--gold); }
#contact .section-title { color: var(--white); }
#contact .section-subtitle { color: rgba(255,255,255,0.7); margin: 0 auto 36px; }

.btn-gold {
  background: var(--gold); color: var(--dark);
  padding: 14px 32px; border-radius: 10px;
  font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer.footer-new {
  background: #0f1a3d;
  padding: 0;
  display: block;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 52px 6%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--white); margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  line-height: 1.6; max-width: 240px;
}

.footer-contact h5, .footer-social h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 16px;
}

.footer-contact, .footer-social {
  display: flex; flex-direction: column; gap: 10px;
}

.footer-contact a, .footer-contact span, .footer-social a {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}

.footer-contact a:hover, .footer-social a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 6%; text-align: center;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ─── FADE-IN ─── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }

  #home { padding: 100px 20px 60px; }
  .hero-inner { flex-direction: column-reverse !important; text-align: center !important; gap: 30px !important; }
  .hero-text p { margin: 0 auto 24px; }
  .hero-buttons { justify-content: center !important; flex-wrap: wrap !important; }
  .hero-photo { flex: none !important; }
  .photo-circle { width: 220px !important; height: 220px !important; }

  .stats-bar { gap: 20px !important; padding: 24px 20px !important; flex-wrap: wrap !important; justify-content: center !important; }

  #services { padding: 60px 20px !important; }
  .services-grid-new { grid-template-columns: 1fr !important; }
  .service-card-new { padding: 26px 22px; }

  #journey { padding: 60px 20px !important; }
  .journey-inner { flex-direction: column !important; gap: 30px !important; }
  .timeline { width: 100% !important; }

  #tools { padding: 60px 20px !important; }

  #portfolio { padding: 60px 20px !important; }
  .portfolio-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .portfolio-thumb { height: 200px !important; }

  #testimonials { padding: 60px 20px !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .testimonials-centered { grid-template-columns: 1fr !important; }

  #contact { padding: 60px 20px !important; }
  .btn-gold { width: 100% !important; text-align: center !important; }

  .section-title { font-size: 1.8rem !important; }

  .footer-inner { grid-template-columns: 1fr !important; gap: 30px !important; padding: 40px 20px !important; }
  footer { flex-direction: column !important; text-align: center !important; gap: 12px !important; }

  .carousel-item { min-width: 90px; padding: 12px 14px; }
  .carousel-item img { width: 30px; height: 30px; }
  .carousel-item p { font-size: 0.7rem; }

  .portfolio-filters { gap: 8px; padding: 0 10px; }
  .filter-btn { padding: 6px 14px; font-size: 0.82rem; }

  section { overflow-x: hidden !important; }
}