:root {
  --brown: #3B2A1A;
  --orange: #F47C20;
  --green: #2E7D32;
  --cream: #FFF7EF;
  --white: #FFFFFF;
  --ink: #3B2A1A;
  --muted: rgba(59, 42, 26, 0.72);
  --line: rgba(59, 42, 26, 0.14);
  --shadow: 0 18px 45px rgba(59, 42, 26, 0.14);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(46, 125, 50, 0.35);
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--orange);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 250px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  display: block;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--orange);
  letter-spacing: 4px;
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  padding: 28px 0;
  border-bottom: 3px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 900;
  cursor: pointer;
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--brown);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(47, 90, 24, 0.2);
}

.btn-primary {
  color: var(--white);
  background: var(--green);
}

.btn-outline {
  color: var(--green);
  background: var(--white);
  border-color: var(--orange);
}

.btn-orange {
  color: var(--white);
  background: var(--orange);
}

.promo-slider {
  padding: 0;
  background: var(--cream);
}

.slider-shell {
  position: relative;
  width: 100%;
  height: clamp(360px, 38vw, 680px);
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.promo-slide.is-active {
  opacity: 1;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(59, 42, 26, 0.82);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.slider-btn.prev {
  left: 18px;
}

.slider-btn.next {
  right: 18px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.slider-dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--orange);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.eyebrow::before,
.eyebrow::after,
.section-title::before,
.section-title::after {
  content: "";
  width: 24px;
  height: 18px;
  background: var(--orange);
  filter: drop-shadow(0 3px 0 var(--green));
  clip-path: polygon(50% 0, 64% 36%, 100% 35%, 70% 56%, 82% 100%, 50% 74%, 18% 100%, 30% 56%, 0 35%, 36% 36%);
}

.page-hero h1 {
  margin: 16px 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-headline {
  max-width: 980px;
}

.hero-headline .en {
  color: var(--brown);
}

.hero-headline .en > span {
  color: var(--orange);
}

.hero h1 span,
.page-hero h1 span {
  color: var(--orange);
}

.page-hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 610px;
}

.page-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
}

.quick-services {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0;
  font-weight: 800;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.section {
  padding: 68px 0;
}

.section.soft {
  background: linear-gradient(180deg, var(--white), var(--cream));
}

.section.dark {
  background: var(--brown);
  color: var(--white);
}

.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.1;
  text-transform: uppercase;
}

.section-head p {
  color: var(--muted);
  margin: 8px auto 0;
  max-width: 760px;
}

.dark .section-head p,
.dark .muted {
  color: rgba(255, 255, 255, 0.74);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.stats-section {
  background:
    linear-gradient(180deg, var(--white), var(--cream));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(59, 42, 26, 0.08);
  text-align: center;
}

.stat-card:nth-child(2) {
  border-top-color: var(--green);
}

.stat-card:nth-child(3) {
  border-top-color: var(--brown);
}

.stat-card:nth-child(4) {
  border-top-color: var(--orange);
}

.stat-card strong {
  color: var(--brown);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-weight: 800;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 0 30px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--orange);
}

.pillar-card:nth-child(2)::before {
  background: var(--green);
}

.pillar-card:nth-child(3)::before {
  background: var(--brown);
}

.pillar-thumb {
  width: calc(100% + 60px);
  height: 210px;
  margin: 0 -30px 24px;
  object-fit: cover;
}

.pillar-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--brown);
  font-weight: 900;
}

.pillar-card h3 {
  margin: 0 0 12px;
  font-size: 27px;
  line-height: 1.08;
}

.pillar-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.mini-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  color: var(--ink);
}

.mini-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

.service-group {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.services-hero .hero-actions {
  margin-top: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.service-tags span,
.serve-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px 16px;
  font-weight: 800;
}

.service-intro {
  padding-bottom: 24px;
}

.narrow-copy {
  max-width: 980px;
}

.narrow-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.7;
}

.service-stack {
  display: grid;
  gap: 28px;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.service-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-panel {
  padding: 24px;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.benefit-panel h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
}

.benefit-panel p {
  margin: 24px 0 14px;
  font-weight: 800;
}

.compact-list {
  margin-top: 0;
  gap: 12px;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.package-card,
.faq-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
}

.package-card.featured {
  border-top: 6px solid var(--orange);
}

.package-card h3,
.faq-card h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.package-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
}

.center-actions {
  margin-top: 26px;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-grid div {
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.final-cta-inner {
  text-align: center;
}

.final-cta-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3vw, 42px);
}

.final-cta-inner p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.final-cta-inner .hero-actions {
  justify-content: center;
}

.service-group h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
}

.service-group > p {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 780px;
}

.subservice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.subservice {
  padding: 20px;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.subservice-image {
  display: block;
  width: calc(100% + 40px);
  height: 150px;
  margin: -20px -20px 18px;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
}

.subservice h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.subservice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  padding: 24px;
  border-left: 4px solid var(--orange);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
}

.process-step strong {
  color: var(--green);
}

.process-step h3 {
  margin: 8px 0;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.service-card,
.testimonial-card,
.team-card,
.blog-card,
.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
}

.service-card {
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 124, 32, 0.4);
  box-shadow: 0 22px 42px rgba(59, 42, 26, 0.16);
}

.icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(135deg, var(--orange) 0 64%, var(--green) 65% 100%);
  border: 4px solid var(--white);
  outline: 3px solid rgba(46, 125, 50, 0.22);
  box-shadow: 0 14px 26px rgba(244, 124, 32, 0.22), 0 6px 0 rgba(59, 42, 26, 0.08);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
}

.service-card h3,
.testimonial-card h3,
.blog-card h3 {
  margin: 0 0 8px;
  line-height: 1.2;
}

.service-card p,
.testimonial-card p,
.blog-card p,
.team-card p {
  margin: 0;
  color: var(--muted);
}

.filter-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 11px 26px;
  font-weight: 900;
  color: var(--ink);
  cursor: pointer;
}

.filter-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.gallery-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(55, 27, 9, 0.08);
}

.gallery-img {
  min-height: 170px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.work-event-stage {
  background-image:
    linear-gradient(135deg, rgba(244, 124, 32, 0.18), rgba(59, 42, 26, 0.12)),
    url("assets/work-event-stage.jpg");
}

.work-live-control {
  background-image:
    linear-gradient(135deg, rgba(46, 125, 50, 0.12), rgba(59, 42, 26, 0.12)),
    url("assets/work-live-control.jpg");
}

.work-cultural-program {
  background-image:
    linear-gradient(135deg, rgba(244, 124, 32, 0.14), rgba(59, 42, 26, 0.1)),
    url("assets/work-cultural-program.jpg");
}

.work-social-campaign {
  background-image:
    linear-gradient(135deg, rgba(244, 124, 32, 0.1), rgba(46, 125, 50, 0.1)),
    url("assets/work-social-campaign.jpg");
}

.work-live-broadcast {
  background-image:
    linear-gradient(135deg, rgba(46, 125, 50, 0.12), rgba(59, 42, 26, 0.12)),
    url("assets/work-live-broadcast.jpg");
}

.work-brand-promotion {
  background-image:
    linear-gradient(135deg, rgba(244, 124, 32, 0.1), rgba(46, 125, 50, 0.1)),
    url("assets/work-brand-promotion.jpg");
}

.portfolio-political-event {
  background-image:
    linear-gradient(135deg, rgba(244, 124, 32, 0.1), rgba(59, 42, 26, 0.12)),
    url("assets/portfolio-political-event.png");
}

.portfolio-rally-live {
  background-image:
    linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(59, 42, 26, 0.12)),
    url("assets/portfolio-rally-live-stream.png");
}

.portfolio-religious-program {
  background-image:
    linear-gradient(135deg, rgba(244, 124, 32, 0.1), rgba(59, 42, 26, 0.12)),
    url("assets/portfolio-religious-program.png");
}

.gallery-card:nth-child(2n) .gallery-img {
  background-position: left center;
}

.gallery-card:nth-child(3n) .gallery-img {
  background-position: right center;
}

.gallery-card h3 {
  margin: 0;
  padding: 14px 16px;
  font-size: 15px;
  text-align: center;
}

.portfolio-hero .hero-actions {
  margin-top: 24px;
}

.portfolio-intro {
  padding-bottom: 24px;
}

.intro-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: center;
}

.intro-thumb-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 120px);
  gap: 14px;
}

.intro-thumb {
  border-radius: 8px;
  border: 1px solid var(--line);
  background-position: center;
  background-size: cover;
  box-shadow: 0 14px 30px rgba(59, 42, 26, 0.12);
}

.intro-thumb:first-child {
  grid-row: 1 / span 2;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.category-overview-card {
  overflow: hidden;
  padding: 0 24px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(59, 42, 26, 0.08);
}

.overview-image {
  min-height: 190px;
  margin: 0 -24px 20px;
  background-position: center;
  background-size: cover;
}

.event-overview {
  background-image:
    linear-gradient(135deg, rgba(244, 124, 32, 0.12), rgba(59, 42, 26, 0.12)),
    url("assets/portfolio-political-event.png");
}

.live-overview {
  background-image:
    linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(59, 42, 26, 0.12)),
    url("assets/portfolio-rally-live-stream.png");
}

.marketing-overview {
  background-image:
    linear-gradient(135deg, rgba(244, 124, 32, 0.1), rgba(46, 125, 50, 0.1)),
    url("assets/work-brand-promotion.jpg");
}

.category-overview-card > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--white);
  background: var(--brown);
  font-weight: 900;
}

.category-overview-card:nth-child(1) > span {
  background: var(--orange);
}

.category-overview-card:nth-child(2) > span {
  background: var(--green);
}

.category-overview-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.category-overview-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.category-overview-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.category-overview-card li {
  position: relative;
  padding-left: 20px;
  font-weight: 800;
}

.category-overview-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.portfolio-card {
  display: flex;
  flex-direction: column;
}

.portfolio-card .gallery-img {
  min-height: 220px;
}

.portfolio-card-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.portfolio-card-body h3 {
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 23px;
  line-height: 1.16;
}

.portfolio-card-body p {
  margin: 0;
  color: var(--muted);
}

.portfolio-tag {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(46, 125, 50, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.project-meta {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
}

.portfolio-card-body strong {
  font-size: 14px;
  line-height: 1.5;
}

.portfolio-card-body .btn {
  width: fit-content;
}

.case-study-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.case-study-side {
  display: grid;
  gap: 18px;
}

.case-study-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 140px);
  gap: 14px;
}

.collage-main,
.collage-small {
  border-radius: 8px;
  border: 1px solid var(--line);
  background-position: center;
  background-size: cover;
  box-shadow: 0 14px 30px rgba(59, 42, 26, 0.12);
}

.collage-main {
  grid-row: 1 / span 2;
}

.case-study-copy h2 {
  margin: 14px 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.case-study-copy h3 {
  margin: 24px 0 10px;
}

.case-study-copy p {
  margin: 0 0 8px;
}

.proposal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proposal-thumb {
  min-height: 150px;
  margin: -28px -28px 22px;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(135deg, rgba(244, 124, 32, 0.18), rgba(46, 125, 50, 0.12)),
    url("assets/work-brand-promotion.jpg") center / cover no-repeat;
}

.proposal-card h2 {
  margin: 14px 0 10px;
  font-size: 28px;
  line-height: 1.12;
}

.proposal-card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.creative-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.creative-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(55, 27, 9, 0.08);
}

.creative-card .gallery-img {
  min-height: 200px;
}

.marketing-workspace {
  background-image:
    linear-gradient(135deg, rgba(244, 124, 32, 0.12), rgba(46, 125, 50, 0.1)),
    url("assets/contact-marketing-thumb.jpg");
}

.creator-workspace {
  background-image:
    linear-gradient(135deg, rgba(244, 124, 32, 0.12), rgba(46, 125, 50, 0.1)),
    url("assets/work-brand-promotion.jpg");
}

.stream-showcase {
  display: grid;
  gap: 14px;
}

.stream-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stream-thumb {
  min-height: 110px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background-position: center;
  background-size: cover;
  box-shadow: 0 14px 28px rgba(59, 42, 26, 0.1);
}

.creative-card h3 {
  margin: 0;
  padding: 16px;
  font-size: 18px;
}

.portfolio-split h2 {
  margin: 14px 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(6, 1fr);
  gap: 18px;
  align-items: start;
}

.why-intro h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.why-item {
  text-align: center;
}

.why-item .icon {
  width: 58px;
  height: 58px;
  font-size: 20px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(135deg, var(--orange) 0 68%, var(--green) 69% 100%);
  outline-color: rgba(255, 247, 239, 0.28);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
}

.why-item h3 {
  margin: 10px 0 4px;
  font-size: 15px;
}

.why-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.trust-section .section-head p {
  color: rgba(255, 255, 255, 0.76);
}

.trust-showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.trust-showcase-copy {
  display: grid;
  align-content: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.trust-showcase-copy h2 {
  margin: 14px 0 12px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.trust-showcase-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.trust-showcase-image {
  min-height: 300px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(59, 42, 26, 0.12), rgba(59, 42, 26, 0.3)),
    url("assets/work-event-stage.jpg") center / cover no-repeat;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 124, 32, 0.36);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.trust-thumb {
  aspect-ratio: 16 / 9;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.trust-one .trust-thumb {
  background-image:
    linear-gradient(135deg, rgba(59, 42, 26, 0.14), rgba(244, 124, 32, 0.12)),
    url("assets/service-event-management.jpg");
  background-position: center 45%;
}

.trust-two .trust-thumb {
  background-image:
    linear-gradient(135deg, rgba(59, 42, 26, 0.14), rgba(244, 124, 32, 0.12)),
    url("assets/work-cultural-program.jpg");
  background-position: center 48%;
}

.trust-three .trust-thumb {
  background-image:
    linear-gradient(135deg, rgba(59, 42, 26, 0.12), rgba(46, 125, 50, 0.12)),
    url("assets/work-event-stage.jpg");
  background-position: center 50%;
}

.trust-four .trust-thumb {
  background-image:
    linear-gradient(135deg, rgba(59, 42, 26, 0.12), rgba(46, 125, 50, 0.12)),
    url("assets/service-live-streaming.jpg");
  background-position: center 58%;
}

.trust-five .trust-thumb {
  background-image:
    linear-gradient(135deg, rgba(59, 42, 26, 0.12), rgba(244, 124, 32, 0.12)),
    url("assets/contact-event-thumb.jpg");
  background-position: center 46%;
}

.trust-six .trust-thumb {
  background-image:
    linear-gradient(135deg, rgba(59, 42, 26, 0.12), rgba(244, 124, 32, 0.12)),
    url("assets/service-digital-marketing.jpg");
  background-position: center 50%;
}

.trust-body {
  padding: 20px 22px 24px;
}

.trust-body span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, var(--orange) 0%, #d86410 48%, var(--green) 100%);
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 10px 24px rgba(244, 124, 32, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-weight: 900;
}

.trust-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
}

.trust-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.highlight-grid.reverse {
  grid-template-columns: 0.92fr 1fr;
}

.highlight-copy h2 {
  margin: 14px 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
}

.highlight-copy p {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--muted);
}

.compact-list {
  margin-bottom: 24px;
}

.highlight-visual {
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.live-visual {
  background:
    linear-gradient(135deg, rgba(46, 125, 50, 0.12), rgba(59, 42, 26, 0.1)),
    url("assets/feature-live-streaming.jpg") center / cover no-repeat;
}

.marketing-visual {
  background:
    linear-gradient(135deg, rgba(244, 124, 32, 0.1), rgba(46, 125, 50, 0.08)),
    url("assets/feature-digital-marketing.jpg") center / cover no-repeat;
}

.recent-work-grid {
  margin-bottom: 24px;
}

.center-action {
  display: flex;
  justify-content: center;
}

.testimonial-home .section-head {
  margin-bottom: 24px;
}

.coming-soon-card,
.faq-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
}

.coming-soon-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.achievement-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.achievement-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.achievement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.achievement-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.achievement-stats article {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 130px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
}

.achievement-stats article:last-child {
  grid-column: 1 / -1;
}

.achievement-stats strong {
  color: var(--orange);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.achievement-stats span {
  color: var(--muted);
  font-weight: 800;
}

.review-category-grid .service-card {
  min-height: 250px;
}

.review-cta {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.review-cta h2 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 3vw, 38px);
}

.review-cta p {
  margin: 0;
  color: var(--muted);
}

.coming-soon-card h3,
.faq-card h3 {
  margin: 0 0 10px;
}

.coming-soon-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-card:last-child {
  grid-column: 1 / -1;
}

.faq-wrap .faq-card:last-child {
  grid-column: auto;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 42px;
  border: 1px solid var(--line);
  border-left: 8px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.final-cta p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
}

.final-cta .eyebrow {
  color: var(--green);
  margin-bottom: 14px;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cta-points span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  font-size: 14px;
  font-weight: 800;
}

.final-cta-actions {
  min-width: 255px;
  display: grid;
  gap: 12px;
}

.final-cta-actions .btn {
  min-width: 255px;
}

.testimonial-card .stars {
  color: var(--orange);
  margin: 16px 0;
  letter-spacing: 2px;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--green));
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 34px;
  align-items: center;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.cta-band.final-cta {
  display: block;
  background:
    linear-gradient(180deg, var(--white), var(--cream));
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.contact-list a,
.contact-list span {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.map-visual {
  min-height: 230px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.72) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255,255,255,.72) 49% 51%, transparent 52%),
    radial-gradient(circle at 62% 48%, var(--orange) 0 4%, transparent 5%),
    linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(244, 124, 32, 0.16));
  background-size: 70px 70px, 70px 70px, 100% 100%, 100% 100%;
}

.map-embed {
  width: 100%;
  min-height: 240px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-hero p {
  max-width: 760px;
}

.page-hero.contact-hero {
  background:
    linear-gradient(90deg, rgba(255, 247, 239, 0.98) 0%, rgba(255, 247, 239, 0.9) 36%, rgba(255, 247, 239, 0.36) 72%, rgba(255, 247, 239, 0.18) 100%),
    url("assets/contact-hero-premium.jpg") center / cover no-repeat;
}

.contact-hero-actions {
  margin-top: 28px;
}

.contact-intro-section {
  padding-bottom: 44px;
}

.contact-card-grid,
.faq-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-info-card,
.contact-panel,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
}

.contact-info-card {
  min-height: 180px;
  padding: 24px;
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.contact-info-card p,
.contact-panel p,
.faq-card p,
.map-layout p,
.service-area-layout p,
.whatsapp-inner p,
.contact-gallery-card p {
  margin: 0;
  color: var(--muted);
}

.contact-gallery-section {
  padding-top: 20px;
}

.contact-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
}

.contact-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-gallery-card div {
  padding: 20px;
}

.contact-gallery-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.enquiry-layout,
.map-layout,
.service-area-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: 30px;
}

.contact-panel h2,
.map-layout h2,
.service-area-layout h2,
.whatsapp-inner h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 18px;
}

.form-grid textarea {
  grid-column: 1 / -1;
}

.quote-guide {
  background: linear-gradient(180deg, var(--white), var(--cream));
}

.contact-feature-list {
  margin-top: 22px;
}

.response-note {
  margin-top: 26px;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brown);
}

.response-note strong {
  display: block;
  margin-bottom: 8px;
}

.response-note p {
  color: rgba(255, 255, 255, 0.78);
}

.map-section {
  padding-top: 72px;
}

.map-section .map-embed {
  min-height: 360px;
  margin-top: 0;
}

.whatsapp-band {
  background: var(--brown);
  color: var(--white);
}

.whatsapp-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.whatsapp-inner p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
}

.whatsapp-inner .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.service-area-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.faq-card {
  padding: 24px;
}

.faq-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.page-hero {
  padding: 96px 0 70px;
  background:
    linear-gradient(90deg, rgba(255, 247, 239, 0.95), rgba(255, 247, 239, 0.68)),
    url("assets/services-hero-bg.jpg") center / cover no-repeat;
}

.testimonials-hero {
  background:
    linear-gradient(90deg, rgba(255, 247, 239, 0.96) 0%, rgba(255, 247, 239, 0.88) 42%, rgba(255, 247, 239, 0.28) 74%, rgba(255, 247, 239, 0.08) 100%),
    url("assets/work-event-stage.jpg") center / cover no-repeat;
}

.page-hero.services-hero {
  background:
    linear-gradient(90deg, rgba(255, 247, 239, 0.97) 0%, rgba(255, 247, 239, 0.86) 42%, rgba(255, 247, 239, 0.56) 100%),
    url("assets/services-hero-bg.jpg") center / cover no-repeat;
}

.page-hero.portfolio-hero {
  background:
    linear-gradient(90deg, rgba(255, 247, 239, 0.96) 0%, rgba(255, 247, 239, 0.9) 38%, rgba(255, 247, 239, 0.42) 72%, rgba(255, 247, 239, 0.22) 100%),
    url("assets/work-cultural-program.jpg") center / cover no-repeat;
}

.page-hero.team-hero {
  background:
    linear-gradient(90deg, rgba(255, 247, 239, 0.98) 0%, rgba(255, 247, 239, 0.94) 38%, rgba(255, 247, 239, 0.48) 62%, rgba(255, 247, 239, 0.12) 100%),
    url("assets/suraj-f-director-full.jpeg") center 30% / cover no-repeat;
}

.about-page-hero {
  background:
    linear-gradient(90deg, rgba(255, 247, 239, 0.96), rgba(255, 247, 239, 0.82) 42%, rgba(255, 247, 239, 0.34)),
    url("assets/work-event-stage.jpg") center / cover no-repeat;
}

.home-page-hero {
  background:
    linear-gradient(90deg, rgba(255, 247, 239, 0.96), rgba(255, 247, 239, 0.74)),
    url("assets/home-hero-background.jpg") center / cover no-repeat;
}

.team-card-pro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.leader-profile {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.leader-side {
  display: grid;
  gap: 20px;
}

.team-photo {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
}

.leader-meta {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.leader-meta h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.leader-meta a {
  color: var(--muted);
  font-weight: 700;
}

.team-details h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.team-details h3 {
  margin: 26px 0 0;
  font-size: 22px;
}

.designation {
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 8px 0 20px;
}

.leader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.leader-actions.stacked {
  display: grid;
  align-content: start;
}

.director-message {
  max-width: 1000px;
}

.director-message blockquote {
  margin: 18px 0 12px;
  padding-left: 24px;
  border-left: 4px solid var(--orange);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.45;
  font-weight: 700;
}

.director-message cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.focus-grid,
.department-grid,
.team-grid,
.team-values-grid {
  display: grid;
  gap: 18px;
}

.focus-grid {
  grid-template-columns: repeat(4, 1fr);
}

.focus-card {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
}

.focus-card strong {
  color: var(--orange);
}

.focus-card h3 {
  margin: 10px 0 8px;
}

.focus-card p {
  margin: 0;
  color: var(--muted);
}

.team-values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.team-value-card {
  min-height: 104px;
  display: flex;
  align-items: center;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white), var(--cream));
  font-weight: 800;
}

.department-grid {
  grid-template-columns: repeat(4, 1fr);
}

.department-card {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 247, 239, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.department-card h3 {
  margin: 0 0 10px;
}

.department-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.team-member-card {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
}

.team-member-photo {
  height: 220px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.team-role-icon {
  width: 74px;
  height: 74px;
  margin: 20px auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(135deg, var(--orange) 0 64%, var(--green) 65% 100%);
  font-weight: 900;
  font-size: 24px;
}

.team-member-card h3 {
  margin: 0 0 6px;
}

.team-member-card p {
  margin: 0;
  color: var(--muted);
}

.identity-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.brand-detail-card {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
}

.brand-detail-card h3 {
  margin-top: 0;
}

.brand-detail-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.brand-detail-card dl div {
  display: grid;
  gap: 4px;
}

.brand-detail-card dt {
  color: var(--green);
  font-weight: 900;
}

.brand-detail-card dd {
  margin: 0;
  color: var(--muted);
}

.contact-leadership-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--cream), var(--white));
  box-shadow: var(--shadow);
}

.contact-list.compact {
  margin-bottom: 0;
}

.final-cta-inner {
  text-align: center;
}

.final-cta-inner p {
  max-width: 760px;
  margin: 0 auto 22px;
  color: var(--muted);
}

.final-cta-inner .hero-actions {
  justify-content: center;
}

.identity-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.identity-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.identity-card img {
  width: 100%;
  height: auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.about-story-grid,
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.about-story h2,
.founder-grid h2 {
  margin: 14px 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.about-story p,
.founder-grid p {
  color: var(--muted);
}

.about-collage {
  position: relative;
  min-height: 460px;
}

.about-visual {
  position: absolute;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-visual-large {
  inset: 0 82px 72px 0;
  background:
    linear-gradient(135deg, rgba(244, 124, 32, 0.16), rgba(59, 42, 26, 0.12)),
    url("assets/work-cultural-program.jpg") center / cover no-repeat;
}

.about-visual-small {
  width: 240px;
  min-height: 180px;
  right: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-visual-small.live {
  top: 36px;
  background-image:
    linear-gradient(135deg, rgba(46, 125, 50, 0.18), rgba(59, 42, 26, 0.12)),
    url("assets/service-live-streaming.jpg");
}

.about-visual-small.marketing {
  bottom: 0;
  background-image:
    linear-gradient(135deg, rgba(244, 124, 32, 0.16), rgba(46, 125, 50, 0.12)),
    url("assets/contact-marketing-thumb.jpg");
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-pillar {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
}

.about-pillar span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.about-pillar:nth-child(1) span {
  background: var(--orange);
}

.about-pillar:nth-child(3) span {
  background: var(--brown);
}

.about-pillar h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.about-pillar p {
  margin: 0;
  color: var(--muted);
}

.founder-photo {
  min-height: 420px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(59, 42, 26, 0.04), rgba(59, 42, 26, 0.16)),
    url("assets/suraj-f-director-portrait.jpeg") center 22% / cover no-repeat;
  box-shadow: var(--shadow);
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.about-metrics div {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.about-metrics strong {
  display: block;
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
}

.about-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.mission-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mission-card h2 {
  margin: 14px 0;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.08;
}

.mission-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.value-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
}

.value-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}

.value-card:nth-child(2) span,
.value-card:nth-child(5) span {
  background: var(--green);
}

.value-card:nth-child(3) span {
  background: var(--brown);
}

.value-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.emotion-panel {
  display: grid;
  gap: 14px;
}

.emotion-panel div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
}

.emotion-panel div:nth-child(2),
.emotion-panel div:nth-child(5) {
  border-left-color: var(--green);
}

.emotion-panel div:nth-child(3) {
  border-left-color: var(--brown);
}

.emotion-panel strong {
  font-size: 18px;
}

.emotion-panel span {
  color: var(--muted);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.services-showcase + .section .serve-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

@media (max-width: 640px) {
  .services-showcase + .section .serve-grid {
    grid-template-columns: 1fr;
  }
}

.serve-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(97, 58, 29, 0.06);
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  padding-left: 34px;
  position: relative;
  font-weight: 800;
}

.feature-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px var(--white), 0 0 0 1px var(--green);
}

.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 24px;
  margin: 4px 0 0;
  color: var(--green);
  font-weight: 800;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  background: var(--brown);
  color: var(--white);
  padding: 48px 0 0;
}

.site-footer h3 {
  letter-spacing: 0.02em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 34px;
}

[data-lang="hi"] body {
  line-height: 1.7;
}

[data-lang="hi"] .nav {
  font-size: 15px;
}

[data-lang="hi"] .hero-headline {
  line-height: 1.08;
}

[data-lang="hi"] .section-title {
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.25;
}

[data-lang="hi"] h2,
[data-lang="hi"] h3,
[data-lang="hi"] h4 {
  line-height: 1.3;
}

[data-lang="hi"] p,
[data-lang="hi"] li,
[data-lang="hi"] a,
[data-lang="hi"] button {
  line-height: 1.65;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 14px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  margin: 7px 0;
}

.footer-bottom {
  margin-top: 34px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
}

.floating-actions {
  position: fixed;
  right: 0;
  top: 36%;
  z-index: 60;
  display: grid;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  box-shadow: var(--shadow);
}

.floating-actions a {
  width: 86px;
  min-height: 70px;
  display: grid;
  place-items: center;
  gap: 2px;
  color: var(--white);
  font-weight: 900;
  font-size: 12px;
  text-align: center;
}

.floating-actions a:nth-child(1) {
  background: var(--green);
}

.floating-actions a:nth-child(2) {
  background: var(--orange);
}

.floating-actions a:nth-child(3) {
  background: var(--brown);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.hi {
  display: none !important;
}

@media (max-width: 1020px) {
.nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 14px 18px 24px;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
  }

  .menu-btn {
    display: block;
  }

  .split,
  .team-card-pro,
  .leader-profile,
  .cta-band,
  .achievement-layout,
  .identity-layout,
  .contact-leadership-card,
  .enquiry-layout,
  .map-layout,
  .service-area-layout,
  .about-story-grid,
  .founder-grid,
  .service-feature,
  .intro-showcase,
  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card-grid,
  .contact-gallery-grid,
  .achievement-stats,
  .faq-section .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .whatsapp-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .why-grid,
  .focus-grid,
  .department-grid,
  .trust-grid,
  .stats-grid,
  .portfolio-grid,
  .category-overview-grid,
  .creative-grid,
  .pillar-grid,
  .subservice-grid,
  .process-row,
  .footer-grid,
  .about-pillars,
  .mission-grid,
  .serve-grid,
  .faq-grid,
  .trust-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 24px);
  }

  .brand-logo {
    width: 190px;
    height: 48px;
  }

  .brand small {
    letter-spacing: 2px;
  }

  .nav-actions .phone-btn {
    display: none;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .slider-shell {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .promo-slide img {
    object-fit: contain;
    background: var(--cream);
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }


  .grid-4,
  .grid-3,
  .grid-2,
  .team-grid,
  .team-values-grid,
  .stats-grid,
  .portfolio-grid,
  .category-overview-grid,
  .intro-showcase,
  .case-study-grid,
  .creative-grid,
  .highlight-grid,
  .highlight-grid.reverse,
  .faq-grid,
  .pillar-grid,
  .subservice-grid,
  .process-row,
  .identity-strip,
  .why-grid,
  .footer-grid,
  .about-pillars,
  .about-metrics,
  .mission-grid,
  .value-grid,
  .serve-grid,
  .service-feature,
  .trust-grid,
  .trust-showcase {
    grid-template-columns: 1fr;
  }

  .contact-card-grid,
  .contact-gallery-grid,
  .faq-section .faq-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-area-list {
    justify-content: flex-start;
  }

  .narrow-copy p {
    font-size: 18px;
  }

  .about-collage {
    min-height: 360px;
  }

  .intro-thumb-grid,
  .case-study-collage,
  .stream-thumbs {
    grid-template-columns: 1fr;
  }

  .intro-thumb-grid,
  .case-study-collage {
    grid-template-rows: none;
  }

  .intro-thumb:first-child,
  .collage-main {
    grid-row: auto;
    min-height: 220px;
  }

  .intro-thumb,
  .collage-small,
  .stream-thumb {
    min-height: 180px;
  }

  .about-visual-large {
    inset: 0 42px 72px 0;
  }

  .about-visual-small {
    width: 180px;
    min-height: 130px;
  }

  .floating-actions {
    top: auto;
    right: 12px;
    bottom: 12px;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 12px;
  }

  .floating-actions a {
    width: 68px;
    min-height: 58px;
    font-size: 11px;
  }

  .final-cta-inner {
    display: grid;
    padding: 26px;
  }

  .final-cta-actions {
    justify-content: flex-start;
  }

  .final-cta-actions,
  .final-cta-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .faq-card:last-child {
    grid-column: auto;
  }
}
