/* =========================================================
   COLART WEBSITE STYLESHEET
   ---------------------------------------------------------
   01. Root Variables
   02. Reset & Global
   03. Layout Helpers
   04. Header & Navigation
   05. Buttons
   06. Shared Section Styles
   07. Homepage
   08. Inner Page Hero
   09. Services Page
   10. Our Work Page
   11. Collaborations Page
   12. CTA
   13. Footer
   14. Floating WhatsApp
   15. Global Responsive
========================================================= */

/* =========================================================
   01. ROOT VARIABLES
========================================================= */
:root {
  --blue: #5DA0BD;
  --yellow: #EEE840;
  --green: #9EC54D;
  --green2: #68B38F;
  --pink: #C91780;
  --purple: #633082;

  --text-dark: #1f2340;
  --text-body: #5f667a;
  --bg-soft: #fcfbff;
  --white: #ffffff;
  --border-soft: rgba(99, 48, 130, 0.08);
  --shadow-soft: 0 20px 50px rgba(73, 44, 115, 0.12);
}

/* =========================================================
   02. RESET & GLOBAL
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

/* =========================================================
   03. LAYOUT HELPERS
========================================================= */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.left-align,
.left-text {
  text-align: left;
}

/* =========================================================
   04. HEADER & NAVIGATION
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(99, 48, 130, 0.05);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
}

.site-logo {
  width: 170px;
  max-width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  white-space: nowrap;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px auto;
  border-radius: 999px;
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   05. BUTTONS
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.25s ease;
  box-shadow: 0 12px 28px rgba(82, 71, 120, 0.12);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--pink);
  box-shadow: 0 10px 25px rgba(201, 23, 128, 0.25);
}

.btn-primary:hover {
  background: #a8146a;
}

.btn-header {
  background: var(--purple);
  color: white;
  box-shadow: 0 10px 25px rgba(99, 48, 130, 0.25);
}

.btn-header:hover {
  background: #4e2568;
}

.btn-secondary {
  color: white;
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(93, 160, 189, 0.25);
}

.btn-secondary:hover {
  background: #4a90a8;
}

.btn-blue,
.btn-yellow,
.btn-green,
.btn-pink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(82, 71, 120, 0.14);
  border: none;
  color: white;
}

.btn-blue {
  background: linear-gradient(90deg, var(--blue), #4ec1f1);
}

.btn-yellow {
  color: white;
  background: linear-gradient(90deg, #d89e2b, #f0d94a);
}

.btn-green {
  background: linear-gradient(90deg, var(--green2), var(--green));
}

.btn-pink {
  background: linear-gradient(90deg, var(--pink), #f04db9);
}

/* =========================================================
   06. SHARED SECTION STYLES
========================================================= */
.eyebrow,
.section-kicker {
  font-size: 16px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 12px;
}

.section-intro {
  text-align: center;
}

.section-kicker span,
.section-intro span {
  color: var(--pink);
}

.section-intro h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 18px;
  line-height: 1.15;
}

.section-description,
.section-subtitle {
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.8;
  max-width: 920px;
  margin: 0 auto;
}

.section-description + .section-description {
  margin-top: 14px;
}

.section-description.narrow {
  max-width: 860px;
}

.section-link-wrap {
  text-align: center;
  margin-top: 34px;
}

.portfolio-highlight {
  padding: 24px 0 96px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(253, 247, 255, 0.96));
  border: 1px solid var(--border-soft);
  border-radius: 34px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.portfolio-copy h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.portfolio-copy p {
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.8;
}

.portfolio-list {
  list-style: none;
  margin: 22px 0 28px;
}

.portfolio-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 700;
}

.portfolio-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--pink), var(--blue));
}

.portfolio-image-card img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(73, 44, 115, 0.14);
}

.why-section {
  padding: 0 0 96px;
}

.why-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
}

.why-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-body);
  line-height: 1.75;
}

/* =========================================================
   07. HOMEPAGE
========================================================= */
.hero {
  position: relative;
  padding: 72px 0 48px;
  overflow: hidden;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-blur-blue {
  width: 300px;
  height: 300px;
  background: var(--blue);
  top: 70px;
  right: 180px;
}

.hero-blur-pink {
  width: 260px;
  height: 260px;
  background: var(--pink);
  right: 60px;
  top: 210px;
}

.hero-blur-yellow {
  width: 280px;
  height: 280px;
  background: var(--yellow);
  right: 240px;
  top: 280px;
}

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

.hero-copy h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero-copy .pink {
  color: var(--pink);
}

.hero-copy .blue {
  color: var(--blue);
}

.hero-copy .green {
  color: var(--green);
}

.hero-copy .purple {
  color: var(--purple);
}

.hero-text {
  font-size: 20px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 580px;
  margin-bottom: 28px;
}

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

.hero-media {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-image {
  width: min(100%, 560px);
  border-radius: 28px;
  position: relative;
  z-index: 5;
  box-shadow: 0 30px 70px rgba(63, 40, 93, 0.16);
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: saturate(110%);
}

.hero-shape-blue {
  width: 280px;
  height: 180px;
  background: linear-gradient(135deg, rgba(93, 160, 189, 0.8), rgba(93, 160, 189, 0.15));
  top: 36px;
  right: 90px;
  transform: rotate(-18deg);
}

.hero-shape-yellow {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(238, 232, 64, 0.85), rgba(238, 232, 64, 0.2));
  bottom: 68px;
  left: 50px;
}

.hero-shape-pink {
  width: 200px;
  height: 90px;
  background: linear-gradient(90deg, rgba(201, 23, 128, 0.9), rgba(201, 23, 128, 0.25));
  right: 62px;
  bottom: 32px;
  transform: skew(-25deg);
  border-radius: 18px;
}

.floating-card {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(99, 48, 130, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.floating-card-top {
  width: 220px;
  top: 52px;
  left: 18px;
  padding: 10px;
}

.floating-card-top img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.floating-card-bottom {
  left: -4px;
  bottom: 120px;
  min-width: 185px;
  padding: 18px 20px;
}

.mini-label {
  color: var(--text-body);
  font-size: 15px;
  margin-bottom: 4px;
}

.floating-card-bottom h3 {
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.floating-card-bottom span {
  font-size: 14px;
  color: var(--green2);
  font-weight: 700;
}

.welcome-section {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.section-curve {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.25;
}

.curve-left {
  left: -180px;
  top: 40px;
  background: radial-gradient(circle, rgba(93, 160, 189, 0.55), transparent 70%);
}

.curve-right {
  right: -180px;
  top: 0;
  background: radial-gradient(circle, rgba(238, 232, 64, 0.45), transparent 70%);
}

.services-section {
  padding: 40px 0 96px;
}

.services-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(73, 44, 115, 0.16);
}

.service-image-wrap {
  padding: 14px 14px 0;
}

.service-image {
  width: 100%;
  aspect-ratio: 1.1 / 0.8;
  object-fit: cover;
  border-radius: 20px;
}

.service-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 22px;
}

.service-body h3 {
  font-size: 27px;
  line-height: 1.15;
  margin-bottom: 8px;
  min-height: 64px;
}

.service-tag {
  color: var(--purple);
  font-weight: 800;
  margin-bottom: 12px;
  min-height: 56px;
}

.service-body p:last-of-type {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 18px;
  min-height: 145px;
}

.service-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* =========================================================
   08. INNER PAGE HERO
========================================================= */
.inner-page-hero {
  position: relative;
  padding: 78px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(93, 160, 189, 0.10), transparent 30%),
    radial-gradient(circle at top right, rgba(201, 23, 128, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  overflow: hidden;
}

.inner-page-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.inner-page-kicker {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}

.inner-page-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.inner-page-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-body);
}

/* =========================================================
   09. SERVICES PAGE
========================================================= */
.services-hero {
  padding-bottom: 70px;
}

.services-hero-grid {
  align-items: center;
}

.services-page-hero .service-anchor-row {
  margin-top: 28px;
}

.service-intro-section {
  padding-top: 30px;
}

.services-overview-nav {
  padding: 0 0 34px;
}

.service-anchor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.service-anchor-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(99, 48, 130, 0.08);
  box-shadow: 0 10px 26px rgba(76, 54, 110, 0.08);
  font-weight: 800;
  color: var(--text-dark);
  transition: 0.25s ease;
}

.service-anchor-pill:hover {
  transform: translateY(-2px);
  color: var(--pink);
}

.service-detail-section {
  padding: 30px 0 96px;
  scroll-margin-top: 110px;
}

.alt-detail-section {
  background: linear-gradient(180deg, rgba(251, 249, 255, 0.72) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: start;
}

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

.service-detail-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.service-subgrid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.subservice-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}

.subservice-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.subservice-card p {
  color: var(--text-body);
  line-height: 1.75;
}

.service-side-visual {
  position: sticky;
  top: 120px;
}

.service-side-image {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(73, 44, 115, 0.14);
}

.service-points {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-weight: 700;
}

.service-point i {
  color: var(--green2);
  font-size: 16px;
}

.strategy-callout {
  margin-top: 26px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(251, 246, 255, 0.95));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.strategy-callout h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.strategy-callout p {
  color: var(--text-body);
  line-height: 1.8;
}

/* =========================================================
   10. OUR WORK PAGE
========================================================= */
.work-intro-section {
  padding-top: 24px;
}

.work-intro-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.work-feature-card {
  min-height: 100%;
  display: flex;
  align-items: stretch;
}

.work-feature-visual {
  width: 100%;
  min-height: 100%;
  border-radius: 28px;
  padding: 36px 30px;
  background:
    radial-gradient(circle at top right, rgba(201, 23, 128, 0.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(93, 160, 189, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,244,255,0.96));
  border: 1px solid rgba(99, 48, 130, 0.08);
  box-shadow: 0 24px 60px rgba(73, 44, 115, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}

.work-feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(99, 48, 130, 0.08);
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-feature-logo {
  width: min(100%, 260px);
  object-fit: contain;
}

.work-feature-visual p {
  max-width: 420px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 17px;
}

.work-summary-section {
  padding: 0 0 96px;
}

.work-summary-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.work-summary-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.work-summary-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(73, 44, 115, 0.16);
}

.work-summary-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 23, 128, 0.14), rgba(93, 160, 189, 0.14));
  color: var(--purple);
  font-size: 22px;
  margin-bottom: 18px;
}

.work-summary-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.work-summary-card p {
  color: var(--text-body);
  line-height: 1.75;
}

.logo-showcase-section {
  padding: 0 0 96px;
}

.logo-preview-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.logo-preview-card {
  min-height: 185px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  cursor: pointer;
}

.logo-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(73, 44, 115, 0.16);
  border-color: rgba(201, 23, 128, 0.16);
}

.logo-preview-card img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  display: block;
}

.logo-preview-card-more {
  background:
    radial-gradient(circle at top right, rgba(201, 23, 128, 0.12), transparent 36%),
    radial-gradient(circle at bottom left, rgba(93, 160, 189, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,244,255,0.96));
}

.logo-preview-more-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.logo-preview-more-number {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: var(--purple);
}

.logo-preview-more-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.work-category-block {
  margin-top: 44px;
}

.work-category-block + .work-category-block {
  margin-top: 56px;
}

.work-category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.work-category-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
}

.work-category-head h3 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
}

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

.project-gallery-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.project-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(73, 44, 115, 0.16);
}

.project-gallery-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  min-height: 320px;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.project-gallery-image {
  width: 100%;
  height: 100%;
  max-height: 300px;

  object-fit: contain;   /* 🔥 THIS is the fix */
  object-position: center;

  display: block;
  background: #ffffff;
  border-radius: 16px;
}

.project-gallery-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  min-height: 280px;
}

/* VIEW ALL WORK CARD */
.project-gallery-card-more {
  border: 1px solid rgba(99, 48, 130, 0.10);
  cursor: pointer;
  min-height: 280px;
  background:
    radial-gradient(circle at top right, rgba(201, 23, 128, 0.12), transparent 36%),
    radial-gradient(circle at bottom left, rgba(93, 160, 189, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248,244,255,0.96));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.project-gallery-card-more:hover {
  border-color: rgba(201, 23, 128, 0.16);
}

.project-gallery-more-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.project-gallery-more-number {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: var(--purple);
}

.project-gallery-more-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.work-next-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.work-next-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
}

.work-next-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.work-next-card p {
  color: var(--text-body);
  line-height: 1.75;
}

/* OUR WORK LOGO MODAL */
.logo-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.logo-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.logo-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 16, 34, 0.58);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.logo-modal.active .logo-modal-overlay {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(21, 16, 34, 0.62);
}

.logo-modal-dialog {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border: 1px solid rgba(99, 48, 130, 0.10);
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(23, 14, 40, 0.24);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(32px) scale(0.965);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease;
}

.logo-modal.active .logo-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.logo-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(99, 48, 130, 0.08);
  color: var(--text-dark);
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s ease, transform 0.25s ease;
}

.logo-modal-close:hover {
  background: rgba(99, 48, 130, 0.14);
  transform: rotate(90deg) scale(1.04);
}

.logo-modal-head {
  padding: 34px 34px 20px;
  border-bottom: 1px solid rgba(99, 48, 130, 0.08);
}

.logo-modal-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.logo-modal-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  margin-bottom: 10px;
}

.logo-modal-head p {
  max-width: 760px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 17px;
}

.logo-modal-grid {
  padding: 26px 34px 34px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.logo-modal-card {
  min-height: 160px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(99, 48, 130, 0.08);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.logo-modal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(73, 44, 115, 0.08);
}

.logo-modal-card img {
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
  display: block;
}

/* WORK PAGE GALLERY MODALS */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1190;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 16, 34, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-modal-dialog {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  height: calc(100vh - 40px);
  margin: 20px auto;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border: 1px solid rgba(99, 48, 130, 0.10);
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(23, 14, 40, 0.24);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(32px) scale(0.965);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease;
}

.gallery-modal.active .gallery-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.gallery-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(99, 48, 130, 0.08);
  color: var(--text-dark);
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-modal-close:hover {
  background: rgba(99, 48, 130, 0.14);
  transform: rotate(90deg) scale(1.04);
}

.gallery-modal-head {
  padding: 34px 34px 20px;
  border-bottom: 1px solid rgba(99, 48, 130, 0.08);
  flex-shrink: 0;
}

.gallery-modal-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.gallery-modal-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  margin-bottom: 10px;
}

.gallery-modal-head p {
  max-width: 760px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 17px;
}

.gallery-modal-grid {
  padding: 26px 34px 34px;
  overflow-y: auto;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-content: start;
}

.gallery-modal-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(99, 48, 130, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  min-height: 260px;
}

.gallery-modal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(73, 44, 115, 0.08);
}

.gallery-modal-card {
  min-height: 340px;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.gallery-modal-card img {
  width: 100%;
  height: 100%;
  max-height: 320px;

  object-fit: contain;   /* 🔥 no cropping */
  object-position: center;

  display: block;
  background: #ffffff;
  border-radius: 16px;
}

@media (max-width: 991px) {
  .project-gallery-grid,
  .work-next-grid,
  .gallery-modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-modal-dialog,
  .gallery-modal-dialog {
    width: min(100%, calc(100% - 24px));
  }

  .logo-modal-head,
  .gallery-modal-head {
    padding: 28px 26px 18px;
  }

  .logo-modal-grid,
  .gallery-modal-grid {
    padding: 22px 26px 26px;
  }

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

@media (max-width: 767px) {
  .work-summary-grid,
  .logo-preview-grid,
  .project-gallery-grid,
  .work-next-grid,
  .logo-modal-grid,
  .gallery-modal-grid {
    grid-template-columns: 1fr;
  }

  .work-category-head {
    align-items: start;
  }

  .logo-preview-card,
  .project-gallery-card,
  .project-gallery-card-more {
    min-height: 220px;
  }

  .project-gallery-image {
    min-height: 220px;
    max-height: 220px;
  }

  .project-gallery-more-number {
    font-size: 24px;
  }

  .logo-modal-dialog,
  .gallery-modal-dialog {
    height: calc(100vh - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    border-radius: 24px;
  }

  .logo-modal-head h2,
  .gallery-modal-head h2 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .logo-modal-head p,
  .gallery-modal-head p {
    font-size: 15px;
  }

  .gallery-modal-card,
  .gallery-modal-card img {
    min-height: 240px;
  }
}

/* =========================================================
   11. COLLABORATIONS PAGE
========================================================= */
.collaborations-intro-section {
  padding-top: 24px;
}

.collaboration-feature-card {
  min-height: 100%;
  display: flex;
  align-items: stretch;
}

.collaboration-feature-box {
  width: 100%;
  min-height: 100%;
  border-radius: 28px;
  padding: 36px 30px;
  background:
    radial-gradient(circle at top right, rgba(201, 23, 128, 0.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(93, 160, 189, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,244,255,0.96));
  border: 1px solid rgba(99, 48, 130, 0.08);
  box-shadow: 0 24px 60px rgba(73, 44, 115, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.collaboration-feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(99, 48, 130, 0.08);
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collaboration-feature-box h3 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.collaboration-feature-box p {
  color: var(--text-body);
  line-height: 1.8;
  font-size: 17px;
  max-width: 460px;
}

.collaborations-section {
  padding: 0 0 96px;
}

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

.collab-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  text-align: left;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.collab-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(73, 44, 115, 0.18);
  border-color: rgba(201, 23, 128, 0.18);
}

.collab-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 23, 128, 0.14), rgba(93, 160, 189, 0.14));
  color: var(--purple);
  font-size: 22px;
  margin-bottom: 18px;
}

.collab-card-logo-wrap {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.collab-card-logo {
  max-width: 180px;
  max-height: 56px;
  object-fit: contain;
  display: block;
}

.collab-card h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.collab-card p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}

.collab-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.collaboration-benefits-section {
  padding-top: 0;
}

/* COLLABORATION MODAL */
.collab-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.collab-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.collab-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 16, 34, 0.58);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.collab-modal.active .collab-modal-overlay {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(21, 16, 34, 0.62);
}

.collab-modal-dialog {
  position: relative;
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border: 1px solid rgba(99, 48, 130, 0.10);
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(23, 14, 40, 0.24);
  overflow: hidden;
  transform: translateY(32px) scale(0.965);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease;
}

.collab-modal.active .collab-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.collab-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(99, 48, 130, 0.08);
  color: var(--text-dark);
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s ease, transform 0.25s ease;
}

.collab-modal-close:hover {
  background: rgba(99, 48, 130, 0.14);
  transform: rotate(90deg) scale(1.04);
}

.collab-modal-content {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.collab-modal-header {
  padding: 34px 34px 22px;
  border-bottom: 1px solid rgba(99, 48, 130, 0.08);
}

.collab-modal-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.collab-modal-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 48px;
}

.collab-modal-brand-logo {
  width: 150px;
  max-width: 34%;
  max-height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.collab-modal-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.collab-modal-lead {
  max-width: 720px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 17px;
}

.collab-modal-body {
  padding: 28px 34px 34px;
}

.collab-modal-body p {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 18px;
}

.collab-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.collab-modal-block {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(99, 48, 130, 0.08);
  border-radius: 24px;
  padding: 24px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.collab-modal-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(73, 44, 115, 0.08);
}

.collab-modal-block h3 {
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.collab-modal-block ul {
  margin: 0;
  padding-left: 18px;
}

.collab-modal-block li {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 8px;
}

.collab-modal-note {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(201, 23, 128, 0.08), rgba(93, 160, 189, 0.08));
  color: var(--text-dark);
  line-height: 1.8;
  border: 1px solid rgba(99, 48, 130, 0.08);
}

.collab-modal-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================================================
   12. CTA
========================================================= */
.cta-section {
  padding: 0 0 96px;
}

.cta-box {
  background: linear-gradient(135deg, rgba(248, 246, 255, 0.95), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--border-soft);
  border-radius: 34px;
  padding: 34px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-soft);
}

.cta-text h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.cta-text h2 span {
  color: var(--pink);
}

.cta-text p {
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.7;
}

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

/* =========================================================
   13. FOOTER
========================================================= */
.site-footer {
  margin-top: 40px;
  background:
    radial-gradient(circle at top left, rgba(93, 160, 189, 0.10), transparent 30%),
    radial-gradient(circle at top right, rgba(201, 23, 128, 0.10), transparent 28%),
    linear-gradient(180deg, #fbf9ff 0%, #f6f2ff 100%);
  border-top: 1px solid rgba(99, 48, 130, 0.08);
  overflow: hidden;
}

.footer-top {
  padding: 70px 0 36px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  width: 160px;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.footer-blurb {
  max-width: 360px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 16px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-links h4,
.footer-contact h4,
.footer-social-head h4 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.footer-links a,
.footer-contact p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.9;
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-social-wrap {
  padding: 0 0 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-social-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 211, 102, 0.16), rgba(93, 160, 189, 0.14));
  border: 1px solid rgba(37, 211, 102, 0.22);
  color: #148a48;
  font-weight: 800;
  transition: 0.25s ease;
}

.channel-pill i {
  font-size: 18px;
}

.channel-pill:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, rgba(37, 211, 102, 0.22), rgba(93, 160, 189, 0.18));
}

.social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-card {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(99, 48, 130, 0.08);
  box-shadow: 0 14px 30px rgba(76, 54, 110, 0.08);
  color: var(--text-dark);
  font-size: 21px;
  transition: 0.28s ease;
  backdrop-filter: blur(10px);
}

.social-card:hover {
  transform: translateY(-4px) scale(1.03);
  color: white;
}

.social-card:nth-child(1):hover {
  background: #1877F2;
}

.social-card:nth-child(2):hover {
  background: linear-gradient(135deg, #C91780, #f77737);
}

.social-card:nth-child(3):hover {
  background: #111111;
}

.social-card:nth-child(4):hover {
  background: #0A66C2;
}

.social-card:nth-child(5):hover {
  background: #FFFC00;
  color: #111111;
}

.social-card:nth-child(6):hover {
  background: #111111;
}

.social-card:nth-child(7):hover {
  background: #FF0000;
}

.footer-bottom {
  border-top: 1px solid rgba(99, 48, 130, 0.08);
  padding: 20px 0 28px;
}

.footer-bottom p {
  color: var(--text-body);
  text-align: center;
  font-size: 15px;
}

footer a {
  color: #5DA0BD; /* your blue */
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

footer a:hover {
  color: #EEE840; /* your yellow */
}

/* EXTRA SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(99,48,130,0.08);
  color: var(--text-dark);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: white;
}

.social-icons a:nth-child(1):hover { background: #1877F2; }
.social-icons a:nth-child(2):hover { background: #C91780; }
.social-icons a:nth-child(3):hover { background: #000000; }
.social-icons a:nth-child(4):hover { background: #0A66C2; }
.social-icons a:nth-child(5):hover { background: #FFFC00; color:#000; }
.social-icons a:nth-child(6):hover { background: #000000; }
.social-icons a:nth-child(7):hover { background: #FF0000; }
.social-icons a:nth-child(8):hover { background: #25D366; }

/* =========================================================
   14. FLOATING WHATSAPP
========================================================= */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-size: 30px;
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.34);
  z-index: 999;
  transition: 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
}

/* =========================================================
   15. GLOBAL RESPONSIVE
========================================================= */
@media (max-width: 1180px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .portfolio-grid,
  .service-detail-grid,
  .reverse-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

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

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

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

  .work-next-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .service-side-visual {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

.reviews-grid,
.reviews-values-grid {
  grid-template-columns: 1fr;
}

.contact-form-grid {
  grid-template-columns: 1fr;
}

@media (max-width: 980px) {
  .project-gallery-grid,
  .collab-grid,
  .collab-modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .site-header {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 94px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(99, 48, 130, 0.08);
  }

  .main-nav.show {
    display: flex;
  }

  .inner-page-hero {
    padding: 58px 0 30px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-main-image {
    width: 100%;
  }

  .floating-card-top {
    width: 170px;
    top: 16px;
    left: 0;
  }

  .floating-card-bottom {
    left: 0;
    bottom: 38px;
  }

  .welcome-section,
  .services-section,
  .portfolio-highlight,
  .why-section,
  .cta-section,
  .service-detail-section {
    padding-bottom: 72px;
  }

  .service-subgrid {
    grid-template-columns: 1fr;
  }

  .work-intro-actions {
    justify-content: center;
  }

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

  .logo-modal-head {
    padding: 28px 24px 18px;
  }

  .logo-modal-grid {
    padding: 22px 24px 24px;
  }

  .collab-modal-header {
    padding: 28px 24px 18px;
  }

  .collab-modal-body {
    padding: 22px 24px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-social-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-row {
    gap: 12px;
  }

  .social-card {
    width: 50px;
    height: 50px;
    font-size: 19px;
  }
}

.contact-form-wrap {
  padding: 28px 24px;
}

.terms-modal-head {
  padding: 28px 24px 18px;
}

.terms-modal-body {
  padding: 22px 24px 24px;
}

@media (max-width: 640px) {
  .site-logo,
  .footer-logo {
    width: 132px;
  }

  .inner-page-hero h1,
  .hero-copy h1,
  .section-intro h2,
  .portfolio-copy h2,
  .cta-text h2,
  .service-detail-copy h2 {
    font-size: 32px;
  }

  .inner-page-text,
  .hero-text,
  .section-description,
  .section-subtitle,
  .portfolio-copy p,
  .cta-text p {
    font-size: 16px;
  }

  .services-grid,
  .why-grid,
  .work-summary-grid,
  .logo-preview-grid,
  .logo-modal-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid,
  .cta-box {
    padding: 24px;
  }

  .hero-media {
    min-height: 350px;
  }

  .hero-shape-blue {
    width: 180px;
    height: 120px;
    right: 20px;
  }

  .hero-shape-yellow {
    width: 160px;
    height: 160px;
    left: 10px;
    bottom: 40px;
  }

  .hero-shape-pink {
    width: 120px;
    right: 20px;
    bottom: 12px;
  }

  .floating-card-top {
    width: 140px;
  }

  .floating-card-bottom h3 {
    font-size: 24px;
  }

  .service-body h3,
  .service-tag,
  .service-body p:last-of-type {
    min-height: unset;
  }

  .service-anchor-row {
    justify-content: flex-start;
  }

  .service-anchor-pill {
    width: 100%;
  }

  .subservice-card h3,
  .strategy-callout h3 {
    font-size: 20px;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .work-category-head {
    align-items: flex-start;
  }

  .logo-preview-card,
  .logo-modal-card {
    min-height: 145px;
    padding: 20px;
  }

  .logo-preview-more-number {
    font-size: 34px;
  }

  .logo-modal-dialog,
  .collab-modal-dialog {
    width: min(100% - 20px, 100%);
    margin: 10px auto;
    max-height: calc(100vh - 20px);
    border-radius: 24px;
  }

  .logo-modal-close,
  .collab-modal-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .collab-modal-content {
    max-height: calc(100vh - 20px);
  }

  .collab-card {
    padding: 24px 22px;
  }

  .collab-card h3 {
    font-size: 24px;
  }

  .collab-modal-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-right: 28px;
  }

  .collab-modal-brand-logo {
    width: 132px;
    max-width: 100%;
  }

  .collab-card-logo {
    max-width: 150px;
    max-height: 50px;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
    font-size: 28px;
  }
}
.review-card {
  padding: 24px;
}

.review-card-top {
  flex-direction: column;
  align-items: flex-start;
}

.review-author h3 {
  font-size: 19px;
}

.terms-modal-dialog {
  width: min(100% - 20px, 100%);
  margin: 10px auto;
  max-height: calc(100vh - 20px);
  border-radius: 24px;
}

.terms-modal-content {
  max-height: calc(100vh - 20px);
}

.terms-modal-close {
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
}

/* =========================================================
   12. REVIEWS PAGE
========================================================= */
.reviews-intro-section {
  padding-top: 24px;
}

.reviews-feature-card {
  min-height: 100%;
  display: flex;
  align-items: stretch;
}

.reviews-feature-box {
  width: 100%;
  min-height: 100%;
  border-radius: 28px;
  padding: 36px 30px;
  background:
    radial-gradient(circle at top right, rgba(201, 23, 128, 0.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(93, 160, 189, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,244,255,0.96));
  border: 1px solid rgba(99, 48, 130, 0.08);
  box-shadow: 0 24px 60px rgba(73, 44, 115, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.reviews-feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(99, 48, 130, 0.08);
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reviews-feature-box h3 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.reviews-feature-box p {
  color: var(--text-body);
  line-height: 1.8;
  font-size: 17px;
  max-width: 460px;
}

.reviews-rating-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.reviews-stars {
  display: flex;
  gap: 6px;
  color: #f2c94c;
  font-size: 16px;
}

.reviews-rating-strip span {
  color: var(--text-body);
  font-weight: 700;
}

.reviews-section {
  padding: 0 0 96px;
}

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

.review-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(73, 44, 115, 0.16);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.review-quote-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 23, 128, 0.14), rgba(93, 160, 189, 0.14));
  color: var(--purple);
  font-size: 20px;
}

.review-body p {
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 17px;
}

.review-author {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(99, 48, 130, 0.08);
}

.review-author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
}

.review-author h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.review-author p {
  color: var(--text-body);
  line-height: 1.6;
}

.reviews-values-section {
  padding: 0 0 96px;
}

.reviews-values-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.reviews-value-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.reviews-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(73, 44, 115, 0.16);
}

.reviews-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 23, 128, 0.14), rgba(93, 160, 189, 0.14));
  color: var(--purple);
  font-size: 22px;
  margin-bottom: 18px;
}

.reviews-value-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.reviews-value-card p {
  color: var(--text-body);
  line-height: 1.75;
}

/* =========================================================
   12. CONTACT PAGE
========================================================= */
.contact-intro-section {
  padding-top: 24px;
}

.contact-feature-card {
  min-height: 100%;
  display: flex;
  align-items: stretch;
}

.contact-feature-box {
  width: 100%;
  min-height: 100%;
  border-radius: 28px;
  padding: 36px 30px;
  background:
    radial-gradient(circle at top right, rgba(201, 23, 128, 0.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(93, 160, 189, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,244,255,0.96));
  border: 1px solid rgba(99, 48, 130, 0.08);
  box-shadow: 0 24px 60px rgba(73, 44, 115, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.contact-feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(99, 48, 130, 0.08);
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-feature-box h3 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.contact-feature-box p {
  color: var(--text-body);
  line-height: 1.8;
  font-size: 17px;
  max-width: 480px;
}

.contact-direct-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-weight: 700;
}

.contact-direct-item i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 23, 128, 0.14), rgba(93, 160, 189, 0.14));
  color: var(--purple);
}

.contact-form-section {
  padding: 0 0 96px;
}

.contact-form-wrap {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border-soft);
  border-radius: 34px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.contact-form {
  margin-top: 30px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(99, 48, 130, 0.12);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  font-size: 16px;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 23, 128, 0.4);
  box-shadow: 0 0 0 4px rgba(201, 23, 128, 0.08);
}

.contact-terms-row {
  margin-top: 22px;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-body);
  line-height: 1.7;
  font-size: 15px;
}

.terms-check input {
  margin-top: 4px;
  accent-color: var(--purple);
}

.terms-link-button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--pink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
}

.contact-submit-row {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-submit-note {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}

.hidden-iframe {
  display: none;
}

/* TERMS MODAL */
.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.terms-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.terms-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 16, 34, 0.58);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.terms-modal.active .terms-modal-overlay {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(21, 16, 34, 0.62);
}

.terms-modal-dialog {
  position: relative;
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
  border: 1px solid rgba(99, 48, 130, 0.10);
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(23, 14, 40, 0.24);
  overflow: hidden;
  transform: translateY(32px) scale(0.965);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease;
}

.terms-modal.active .terms-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.terms-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(99, 48, 130, 0.08);
  color: var(--text-dark);
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s ease, transform 0.25s ease;
}

.terms-modal-close:hover {
  background: rgba(99, 48, 130, 0.14);
  transform: rotate(90deg) scale(1.04);
}

.terms-modal-content {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.terms-modal-head {
  padding: 34px 34px 22px;
  border-bottom: 1px solid rgba(99, 48, 130, 0.08);
}

.terms-modal-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.terms-modal-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.terms-modal-head p {
  max-width: 760px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 17px;
}

.terms-modal-body {
  padding: 28px 34px 34px;
}

.terms-modal-body h3 {
  font-size: 23px;
  margin: 24px 0 10px;
}

.terms-modal-body h3:first-child {
  margin-top: 0;
}

.terms-modal-body p {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 12px;
}