/* ===== KAMBA ON PUBLIC CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,700&family=Cormorant+SC:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;600;700&display=swap');

:root {
  --navy:        #1F2B52;
  --navy-mid:    #162040;
  --navy-light:  #2A3F70;
  --gold:        #FEBB2D;
  --gold-light:  #FFD060;
  --gold-dim:    rgba(254,187,45,0.15);
  --white:       #FFFFFF;
  --gray-50:     #F8F9FC;
  --gray-100:    #F0F3FA;
  --gray-200:    #E2E8F4;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --text:        #1E293B;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --transition:  all 0.28s cubic-bezier(.4,0,.2,1);
  --container:   1200px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Roboto', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Cormorant SC', serif;
  line-height: 1.2;
  font-weight: 700;
}
.display-title {
  font-family: 'Playfair Display', 'Cormorant SC', serif; font-variant: normal; text-transform: none;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 12px auto 0;
}
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--gray-500); }

/* ===== BUTTONS ===== */
.btn, button.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(212,160,23,0.35);
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,160,23,0.45); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.btn-white:hover { background: var(--gray-50); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.875rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: var(--transition);
  padding: 0;
}
.site-header.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.nav-logo {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo .k  { color: var(--white); }
.nav-logo .on { color: var(--gold); }
.nav-logo img { max-height: 44px; max-width: 160px; width: auto; height: auto; object-fit: contain; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-hamburger {
  display: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  color: var(--white);
  font-size: 1.1rem;
  padding: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.16); }

/* ── MOBILE NAV DRAWER (slides in from right) ── */
.nav-mobile {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  z-index: 1001;
  padding: 0;
  transform: translateX(110%);
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(0,0,0,0.45);
  overflow-y: auto;
  overflow-x: hidden;
}
.nav-mobile.open { transform: translateX(0); }

/* Drawer header */
.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.nav-mobile-logo-wrap { display: flex; align-items: center; gap: 10px; }
.nav-mobile-logo-wrap img { max-height: 36px; object-fit: contain; }
.nav-mobile-logo-text { color: var(--white); font-size: 1.2rem; font-weight: 800; }
.nav-mobile-logo-text span { color: var(--gold); }

.nav-mobile-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-mobile-close:hover { background: rgba(255,255,255,0.18); color: var(--white); }

/* Nav links */
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}
.nav-mobile-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 22px;
  text-decoration: none;
  transition: var(--transition);
  border-left: 3px solid transparent;
  position: relative;
}
.nav-mobile-links a i.link-icon {
  width: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-mobile-links a:hover,
.nav-mobile-links a.nav-active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-left-color: var(--gold);
}
.nav-mobile-links a:hover i.link-icon,
.nav-mobile-links a.nav-active i.link-icon { color: var(--gold); }
.nav-mobile-links a.nav-active { font-weight: 700; }

/* Divider inside links */
.nav-mobile-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 8px 22px;
}

/* Drawer footer CTA */
.nav-mobile-footer {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.nav-mobile-footer .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}

/* Contact info inside drawer */
.nav-mobile-contact {
  padding: 16px 22px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-decoration: none;
  transition: var(--transition);
}
.nav-mobile-contact a:hover { color: var(--gold); }
.nav-mobile-contact a i { color: var(--gold); width: 14px; text-align: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a1040 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', 'Cormorant SC', serif; font-variant: normal; text-transform: none;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--gold); }
.hero-desc { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-val { font-size: 1.8rem; font-weight: 800; color: var(--white); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--white);
  animation: float 6s ease-in-out infinite;
}
.hero-card + .hero-card { margin-top: 12px; animation-delay: 1s; }
.hero-card-icon { width: 40px; height: 40px; background: var(--gold-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.hero-card-title { font-weight: 700; font-size: 0.95rem; }
.hero-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-card-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 99px; margin-top: 14px; overflow: hidden; }
.hero-card-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 99px; animation: growBar 2.5s ease-in-out infinite alternate; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes growBar { from{width:30%} to{width:85%} }

/* ===== SERVICES SECTION ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
/* Image background layer — hidden by default, shown on hover */
.svc-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}
/* Dark overlay on top of image for readability on hover */
.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,25,55,0.72);
  opacity: 0;
  z-index: 1;
  transition: var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
/* If card has an image, show it on hover instead of the plain navy gradient */
.service-card:has(.svc-card-bg):hover::before { opacity: 0; }
.service-card:has(.svc-card-bg):hover .svc-card-bg { opacity: 1; }
.service-card:has(.svc-card-bg):hover .svc-card-overlay { opacity: 1; }
/* Cards without image: use plain navy gradient on hover */
.service-card:not(:has(.svc-card-bg)):hover::before { opacity: 1; }
.service-card:hover .svc-icon,
.service-card:hover .svc-title,
.service-card:hover .svc-desc,
.service-card:hover .svc-link { color: var(--white); }
.service-card:hover .svc-icon-wrap { background: rgba(255,255,255,0.12); }
.svc-icon-wrap { width: 56px; height: 56px; background: var(--gold-dim); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: var(--transition); position: relative; z-index: 3; }
.svc-icon { font-size: 1.4rem; color: var(--gold); transition: var(--transition); position: relative; z-index: 3; }
.svc-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; transition: var(--transition); position: relative; z-index: 3; }
.svc-desc  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; transition: var(--transition); position: relative; z-index: 3; }
.svc-link  { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 0.85rem; font-weight: 700; color: var(--gold); transition: var(--transition); position: relative; z-index: 3; }

/* ===== ABOUT / WHO WE ARE ===== */
.about-section { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(212,160,23,0.4);
  text-align: center;
}
.about-badge-float .num { font-size: 2rem; font-weight: 900; display: block; }
.about-badge-float .txt { font-size: 0.78rem; font-weight: 700; }
.values-list { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon { width: 44px; height: 44px; background: var(--gold-dim); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.value-title { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.value-desc  { font-size: 0.85rem; color: var(--gray-500); margin-top: 2px; }

/* ===== PORTFOLIO ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; background: var(--gray-100); }
.portfolio-img-placeholder { width: 100%; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 2.5rem; }
.portfolio-info { padding: 20px 22px; }
.portfolio-cat  { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 6px; }
.portfolio-title { font-size: 1rem; font-weight: 700; color: var(--navy); }
.portfolio-client { font-size: 0.82rem; color: var(--gray-500); margin-top: 4px; }

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); background: var(--white); box-shadow: var(--shadow); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  gap: 12px;
}
.faq-question .icon { flex-shrink: 0; width: 26px; height: 26px; background: var(--gray-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; transition: var(--transition); }
.faq-item.open .faq-question .icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 18px; font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; animation: fadeIn .2s ease; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--gray-100); }
.blog-img-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy-mid), var(--navy-light)); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.25); font-size: 2rem; }
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.78rem; color: var(--gray-500); }
.blog-cat { color: var(--gold); font-weight: 700; }
.blog-title { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.blog-excerpt { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; flex: 1; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-200); font-size: 0.8rem; color: var(--gray-500); }

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,0.15) 0%, transparent 60%);
}
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.nl-title { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: var(--white); line-height: 1.25; }
.nl-sub { color: rgba(255,255,255,0.65); font-size: 1rem; margin-top: 10px; }
.nl-form { display: flex; gap: 10px; margin-top: 24px; }
.nl-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.nl-input::placeholder { color: rgba(255,255,255,0.45); }
.nl-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.nl-benefits { display: flex; flex-direction: column; gap: 12px; }
.nl-benefit { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.nl-benefit i { color: var(--gold); font-size: 0.9rem; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; margin-top: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: var(--gold-dim); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.contact-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray-500); margin-bottom: 4px; }
.contact-val { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,23,0.12); }
.form-control::placeholder { color: #94a3b8; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg { display: none; padding: 12px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; margin-top: 12px; }
.form-msg.success { display: block; background: rgba(34,197,94,0.12); color: #15803D; border: 1px solid rgba(34,197,94,0.3); }
.form-msg.error   { display: block; background: rgba(239,68,68,0.1); color: #B91C1C; border: 1px solid rgba(239,68,68,0.3); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.footer-logo .on { color: var(--gold); }
.footer-desc { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--gold); color: var(--navy); }
.footer-heading { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 130px 0 70px;
  text-align: center;
}
.page-banner h1 { font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; color: var(--white); }
.page-banner p  { color: rgba(255,255,255,0.65); margin-top: 10px; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.5; }

/* ===== PROCESS STEPS ===== */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 52px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: calc(12.5%); right: calc(12.5%); height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num { width: 72px; height: 72px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 900; margin: 0 auto 20px; box-shadow: 0 4px 20px rgba(212,160,23,0.4); }
.step-title { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-desc  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ===== CLIENTS / LOGOS ===== */
.clients-section { background: var(--gray-50); padding: 60px 0; }
.clients-label { text-align: center; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-500); margin-bottom: 32px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.animate-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.animate-up.visible { opacity: 1; transform: translateY(0); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 500;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .newsletter-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .services-grid, .portfolio-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Sections */
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .container { padding: 0 16px; }

  /* Grids → 1 col */
  .services-grid,
  .portfolio-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-grid  { gap: 28px; }

  /* About */
  .about-badge-float { display: none; }

  /* Hero */
  .hero { padding-top: 76px; min-height: auto; padding-bottom: 56px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-btns  { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  /* Newsletter */
  .nl-form { flex-direction: column; }
  .nl-form .btn { width: 100%; justify-content: center; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }

  /* Process steps → 1 col on small tablets */
  .process-steps { grid-template-columns: 1fr; gap: 24px; }

  /* Page banner */
  .page-banner { padding: 100px 0 48px; }

  /* Footer bottom */
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Tables in public pages (if any) */
  .table-wrap, table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 480px) {
  /* Typography scale down */
  .section-title { font-size: 1.6rem; }
  .hero-title    { font-size: 2rem; }
  .hero-stat-val { font-size: 1.5rem; }

  /* Cards full width */
  .service-card, .portfolio-card, .blog-card { width: 100%; }

  /* Process step nums smaller */
  .step-num { width: 56px; height: 56px; font-size: 1.1rem; }

  /* Buttons */
  .btn { padding: 11px 20px; font-size: 0.9rem; }

  /* Contact */
  .contact-grid  { gap: 28px; }
  .contact-form  { padding: 20px 14px; }

  /* Footer */
  .footer-desc { max-width: 100%; }

  /* WhatsApp float on very small screens */
  .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 1.3rem; }
}


/* ===== TABS (FAQ categories) ===== */
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 26px;
  border: 2px solid var(--gray-200);
  border-radius: 99px;
  background: transparent;
  color: var(--gray-500);
  font-family: 'Roboto', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .2px;
  white-space: nowrap;
}
.tab-btn:hover:not(.active) {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--gray-50);
}
.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(31,43,82,.25);
}
.tab-pane { display: none; }
.tab-pane.active {
  display: block;
  animation: fadeIn .22s ease;
}

/* ===== MOBILE NAV OVERLAY BACKDROP ===== */
.nav-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.nav-mobile-backdrop.open { display: block; animation: fadeIn .25s ease; }

/* ===== PUBLIC PAGE RESPONSIVE GRIDS ===== */
/* quem-somos inline 2-col grids */
@media (max-width: 640px) {
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  /* blog.php sidebar layout */
  [style*="grid-template-columns:1fr 300px"],
  [style*="grid-template-columns: 1fr 300px"] {
    grid-template-columns: 1fr !important;
  }
  /* blog 2-col grid override */
  .blog-grid[style] { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  /* blog sidebar layout */
  [style*="grid-template-columns:1fr 300px"],
  [style*="grid-template-columns: 1fr 300px"] {
    grid-template-columns: 1fr !important;
  }
  /* orcamentos form grid */
  .form-grid-inline { grid-template-columns: 1fr !important; }
}


/* ===== BLOG PAGE LAYOUT ===== */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.blog-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

/* ===== QUEM-SOMOS INLINE GRIDS ===== */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.values-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .mvv-grid   { grid-template-columns: repeat(2, 1fr); }
  .team-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .blog-layout        { gap: 28px; }
  .blog-grid-2col     { grid-template-columns: 1fr !important; }
  .mvv-grid           { grid-template-columns: 1fr; }
  .values-grid-2col   { grid-template-columns: 1fr; }
  .team-grid          { grid-template-columns: 1fr; }
}

/* ===== ORCAMENTOS PUBLIC PAGE ===== */
@media (max-width: 640px) {
  .orcamento-form-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== ORCAMENTOS PUBLIC LAYOUT ===== */
.orc-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1024px) {
  .orc-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* ===== PORTFOLIO SLIDER ===== */
.port-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--gray-100);
  cursor: grab;
}
.port-slider:active { cursor: grabbing; }
.port-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.port-slide.active { opacity: 1; pointer-events: all; }
.portfolio-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portfolio-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 2.5rem;
}
.pslide-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(7,15,31,0.55); color: #fff; border: none; border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.75rem;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0; backdrop-filter: blur(4px);
}
.port-slider:hover .pslide-btn { opacity: 1; }
.pslide-prev { left: 8px; }
.pslide-next { right: 8px; }
.pslide-btn:hover { background: rgba(212,160,23,0.85); }
.pslide-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 10;
}
.pslide-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pslide-dot.active { background: var(--gold); transform: scale(1.35); }
.pslide-count {
  position: absolute; top: 8px; right: 8px;
  background: rgba(7,15,31,0.6); color: #fff;
  font-size: 0.68rem; font-weight: 700; padding: 3px 8px;
  border-radius: 20px; letter-spacing: 0.5px;
  backdrop-filter: blur(4px); z-index: 10; pointer-events: none;
}
@media (max-width: 768px) {
  .pslide-btn { opacity: 0.75; width: 28px; height: 28px; }
}

/* ===== BLOG SIDEBAR ===== */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(7,15,31,0.05);
}
.sidebar-card-dark {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%);
  border: none;
  text-align: center;
}
.sidebar-heading {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-heading i { color: var(--gold); font-size: 0.72rem; }
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  background: var(--gray-50);
  text-decoration: none; font-size: 0.8rem; font-weight: 600; color: var(--gray-600);
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.cat-pill:hover { border-color: var(--gold); background: rgba(212,160,23,0.07); color: var(--navy); transform: translateY(-1px); }
.cat-pill-active { border-color: var(--gold); background: var(--gold); color: var(--navy) !important; font-weight: 700; }
.cat-pill-active:hover { transform: none; }
.cat-pill-count {
  background: rgba(0,0,0,0.08); border-radius: 99px;
  padding: 1px 7px; font-size: 0.7rem; font-weight: 700; min-width: 20px; text-align: center;
}
.cat-pill-active .cat-pill-count { background: rgba(0,0,0,0.15); }
.sidebar-popular-item {
  display: flex; gap: 12px; align-items: flex-start; text-decoration: none;
  padding: 10px; border-radius: 10px; transition: background 0.18s; margin: 0 -10px;
}
.sidebar-popular-item:hover { background: var(--gray-50); }
.sidebar-popular-num {
  width: 28px; height: 28px; background: var(--gold-dim); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; color: var(--gold); flex-shrink: 0;
}
.sidebar-popular-title { font-size: 0.83rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.sidebar-popular-meta { font-size: 0.72rem; color: var(--gray-400); margin-top: 3px; }
.sidebar-popular-meta i { margin-right: 3px; }

/* ===== NEW HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #05091a 0%, #0b122b 50%, #0f0823 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: 0;
  animation: blobFade 1.2s ease forwards;
}
.hero-blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,160,23,0.18) 0%, transparent 70%);
  top: -200px; right: -200px; animation-delay: 0.1s;
}
.hero-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.10) 0%, transparent 70%);
  bottom: -150px; left: -100px; animation-delay: 0.3s;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  top: 40%; left: 30%; animation-delay: 0.5s;
}
@keyframes blobFade { to { opacity: 1; } }
.hero-inner {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px 60px; max-width: 900px; width: 100%; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(212,160,23,0.9);
  margin-bottom: 32px; opacity: 0;
  animation: heroFadeUp 0.8s 0.2s ease forwards;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.25);
  animation: heroPulse 2s infinite;
}
@keyframes heroPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(212,160,23,0.25); }
  50%      { box-shadow: 0 0 0 7px rgba(212,160,23,0.08); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white); margin: 0 0 44px;
  display: flex; flex-direction: column; gap: 0;
}
.hero-line {
  display: block; opacity: 0; transform: translateY(30px);
  animation: heroFadeUp 0.8s ease forwards;
}
.hero-line:nth-child(1) { animation-delay: 0.35s; }
.hero-line:nth-child(2) { animation-delay: 0.50s; }
.hero-line:nth-child(3) {
  animation-delay: 0.65s;
  color: rgba(255,255,255,0.38);
  font-size: 0.72em;
}
.hero-title em { font-style: italic; color: var(--gold); }
@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  opacity: 0; animation: heroFadeUp 0.8s 0.8s ease forwards;
}
.hero-cta-main { padding: 16px 36px; font-size: 1rem; border-radius: 50px; }
.hero-cta-ghost {
  color: rgba(255,255,255,0.65); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.hero-cta-ghost:hover { color: var(--gold); }
.hero-cta-ghost i { font-size: 0.75rem; transition: transform 0.2s; }
.hero-cta-ghost:hover i { transform: translateX(4px); }
.hero-ticker {
  position: absolute; bottom: 0; left: 0; right: 0; height: 52px;
  border-top: 1px solid rgba(255,255,255,0.07);
  overflow: hidden; display: flex; align-items: center; z-index: 3;
  opacity: 0; animation: heroFadeUp 0.8s 1s ease forwards;
}
.hero-ticker::before,
.hero-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2; pointer-events: none;
}
.hero-ticker::before { left: 0;  background: linear-gradient(to right, #05091a, transparent); }
.hero-ticker::after  { right: 0; background: linear-gradient(to left,  #05091a, transparent); }
.hero-ticker-track {
  display: flex; align-items: center; white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}
.hero-tick-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 28px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.hero-tick-item:hover { color: var(--gold); }
.hero-tick-item i { font-size: 0.45rem; color: var(--gold); opacity: 0.6; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
@media (max-width: 768px) {
  .hero-inner { padding-bottom: 64px; }
  .hero-ctas  { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
}

/* Override old portfolio img - now handled by .port-slider */
.portfolio-img-old { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
