/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap");

/*===== DESIGN SYSTEM VARIABLES (BRIGHT WHITE LIGHT THEME) =====*/
:root {
  --header-height: 4rem;

  /* Primary Colors */
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-glow: transparent;

  /* Secondary & Accent Colors */
  --accent-purple: #7c3aed;
  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;

  /* Neutral Palette (Light Theme) */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-glass: #ffffff;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;

  /* Text Colors */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-subtle: #64748b;
  --text-inverse: #ffffff;

  /* Borders & Dividers */
  --border-light: rgba(226, 232, 240, 0.8);
  --border-medium: #cbd5e1;
  --border-accent: rgba(37, 99, 235, 0.3);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 4px 14px rgba(15, 23, 42, 0.06);

  /* Typography */
  --body-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --title-font: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  --font-bold: 700;
  --font-semibold: 600;
  --font-medium: 500;

  /* Z-indexes */
  --z-back: -10;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.85rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-full: 9999px;
}

/*===== BASE STYLES =====*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== SCROLL REVEAL / FADE UP ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

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

button {
  font-family: var(--body-font);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/*===== LAYOUT & CONTAINERS =====*/
.bd-grid {
  max-width: 1200px;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 5.5rem 0 3.5rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--primary-light);
  color: var(--primary-color);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  position: relative;
  display: inline-block;
}

.section-title span {
  color: var(--primary-color);
}

.section-subtitle {
  color: var(--text-subtle);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0.75rem auto 0;
}

/*===== BUTTONS & BADGES =====*/
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.button--secondary {
  background: var(--bg-surface);
  color: var(--text-main) !important;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.button--secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
  color: var(--primary-color) !important;
  box-shadow: var(--shadow-md);
}

.button--outline {
  background: transparent;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.button--outline:hover {
  background: var(--primary-color);
  color: #ffffff !important;
  box-shadow: none;
}

/* Status Pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  color: #059669;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  70% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

/*===== FLOATING NAVBAR =====*/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: all 0.3s ease;
  padding: 0.75rem 0;
}

.l-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid var(--border-light);
  padding: 0.5rem 0;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--title-font);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-main);
}

.nav__logo span {
  color: var(--primary-color);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-subtle);
  position: relative;
  padding: 0.5rem 0.25rem;
  transition: color 0.25s ease;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Mobile Nav Menu */
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 5rem 2rem 2rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: var(--z-fixed);
    display: flex;
    flex-direction: column;
  }

  .nav__menu.show {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
  }

  .nav__link {
    font-size: 1.1rem;
    width: 100%;
  }

  .nav__toggle {
    display: block;
    z-index: calc(var(--z-fixed) + 1);
  }
}

/*===== HERO SECTION =====*/
.home {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  min-height: 88vh;
  position: relative;
}

.home__data {
  z-index: 1;
}

.home__greeting {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.home__title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.home__title-color {
  color: var(--primary-color);
}

.home__subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.home__p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
}

.home__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.home__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home__social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.home__social-icon:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.home__img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floating Tech Chips around avatar */
.tech-chip-float {
  position: absolute;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  z-index: 2;
  animation: float 4s ease-in-out infinite alternate;
}

.tech-chip-float--1 {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.tech-chip-float--2 {
  bottom: 15%;
  right: -5%;
  animation-delay: 1.5s;
}

.tech-chip-float--3 {
  top: 60%;
  left: -8%;
  animation-delay: 2.5s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-12px);
  }
}

/*===== ABOUT & STATS SECTION =====*/
.about__container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem 3.5rem;
  align-items: center;
}

.about__img-block {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.about__text-block {
  grid-column: 2;
  grid-row: 1;
}

.about__stats-block {
  grid-column: 2;
  grid-row: 2;
}

.about__subtitle {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.about__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about__stat {
  background: #f0f4fe;
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 120px;
}

.about__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.12);
  border-color: var(--border-accent);
}

.about__stat--wide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about__stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.about__stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--title-font);
  color: #0f172a;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.plus-sign {
  color: #2563eb;
  font-weight: 700;
  font-size: 2.1rem;
}

.about__stat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.35;
}

.stat-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.15rem;
  background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
  color: #ffffff !important;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
  margin-bottom: 0.75rem;
}

.stat-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

/*===== SERVICES / LAYANAN SECTION =====*/
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
  background: var(--primary-color);
  color: #ffffff;
  transform: scale(1.05);
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-subtle);
  line-height: 1.6;
}

/*===== SKILLS & TECH MATRIX SECTION =====*/
.skills__categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.skills__category-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.skills__category-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.skills__category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.skills__category-header i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.skills__category-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}

.skills__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.25s ease;
}

.skill-pill i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.skill-pill:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/*===== WORK / PORTFOLIO SECTION =====*/
.portfolio-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  background: var(--bg-surface);
  padding: 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-subtle);
  transition: all 0.25s ease;
  border: none;
  background: transparent;
}

.filter-btn:hover {
  color: var(--primary-color);
}

.filter-btn.active {
  background: var(--primary-color);
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

/* ===== PORTFOLIO HORIZONTAL MARQUEE ===== */
.portfolio-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;

}

.portfolio-marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.portfolio-marquee-track:hover {
  animation-play-state: paused;
}

.portfolio-marquee-track .portfolio-card {
  flex: 0 0 600px;
  min-width: 600px;
  max-width: 600px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.portfolio-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.portfolio-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-subtle);
}

.portfolio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card__img img {
  transform: scale(1.06);
}

.portfolio-card--hover-title .portfolio-card__img {
  aspect-ratio: 16 / 9;
  height: auto;
  position: relative;
  overflow: hidden;
}

.portfolio-card__hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-light);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 15px rgba(15, 23, 42, 0.08);
}

.portfolio-card:hover .portfolio-card__hover-overlay {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.portfolio-card__hover-title {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.portfolio-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.portfolio-card__desc {
  font-size: 0.9rem;
  color: var(--text-subtle);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  background: var(--primary-light);
  color: var(--primary-color);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
}

.portfolio-card__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: color 0.2s ease;
}

.portfolio-card__link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.portfolio-more {
  text-align: center;
  margin-top: 3.5rem;
}

/* Slider Nav Controls */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
}

.slider-nav:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.slider-nav--prev {
  left: -22px;
}

.slider-nav--next {
  right: -22px;
}

/*===== NEW CONTACT SECTION LAYOUT =====*/
.contact__wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.25rem;
  align-items: start;
}

.contact__form-box,
.contact__social-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.contact__form-box:hover,
.contact__social-box:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.contact__box-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact__box-title i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.contact__alert-success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact__form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact__form-group input,
.contact__form-group textarea {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all 0.25s ease;
}

.contact__form-group input:focus,
.contact__form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--primary-light);
}

.contact__social-desc {
  font-size: 0.92rem;
  color: var(--text-subtle);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.contact__social-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__social-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.contact__social-item:hover {
  transform: translateX(6px);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.contact__social-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact__social-item--wa .contact__social-icon-wrap {
  background: #dcfce7;
  color: #16a34a;
}

.contact__social-item--ig .contact__social-icon-wrap {
  background: #fce7f3;
  color: #db2777;
}

.contact__social-item--li .contact__social-icon-wrap {
  background: #dbeafe;
  color: #2563eb;
}

.contact__social-item:hover .contact__social-icon-wrap {
  transform: scale(1.1);
}

.contact__social-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact__social-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact__social-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.contact__social-arrow {
  margin-left: auto;
  font-size: 1.35rem;
  color: var(--text-subtle);
  transition: transform 0.25s ease;
}

.contact__social-item:hover .contact__social-arrow {
  transform: translateX(4px);
  color: var(--primary-color);
}

/*===== FOOTER =====*/
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 4.5rem 0 2rem;
  margin-top: 4rem;
}

.footer__inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  font-family: var(--title-font);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-main);
  display: inline-block;
  margin-bottom: 0.85rem;
}

.footer__logo span {
  color: var(--primary-color);
}

.footer__tagline {
  color: var(--text-subtle);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.footer__social-link:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer__col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav a {
  color: var(--text-subtle);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--primary-color);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-subtle);
  font-size: 0.92rem;
}

.footer__contact-list i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.footer__divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 2rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 0.9rem;
  color: var(--text-subtle);
}

.footer__totop {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.25s ease;
}

.footer__totop:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-4px);
}

/*===== MODAL PREVIEW =====*/
.design-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.design-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.design-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
}

.design-modal__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  animation: modalZoom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalZoom {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.design-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: all 0.2s ease;
}

.design-modal__close:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.design-modal__img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background: #f1f5f9;
}

.design-modal__bar {
  padding: 1rem 1.5rem;
  background: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.design-modal__loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--primary-light);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Subpages Styling */
.design-section {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}

.design-hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  margin-bottom: 2.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.hero-title--accent {
  color: var(--primary-color);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-subtle);
  margin-top: 0.5rem;
}

/*===== SUBPAGE GRIDS & CARDS =====*/
.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.design-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 240px;
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
}

.design-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.design-card img.thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.design-card:hover img.thumb {
  transform: scale(1.06);
}

.design-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.design-card:hover .design-card__overlay {
  opacity: 1;
}

.design-card__zoom {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

.design-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.85) 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Website Card New */
.website-card-new {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.website-card-new:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.website-card-new__img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-subtle);
}

.website-card-new__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.website-card-new:hover .website-card-new__img-wrap img {
  transform: scale(1.06);
}

.website-card-new__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.website-card-new__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.website-card-new__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.website-card-new__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  background: var(--primary-light);
  color: var(--primary-color);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
}

.website-card-new__desc {
  font-size: 0.9rem;
  color: var(--text-subtle);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.website-card-new__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

.website-card-new__link:hover {
  text-decoration: underline;
}

/*===== DEDICATED PROJECTS PAGE SINGLE-COLUMN HORIZONTAL CARDS =====*/
.website-list-single {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}

.website-card-horizontal {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 1.75rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
}

.website-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.website-card-horizontal__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-subtle);
}

.website-card-horizontal__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.website-card-horizontal:hover .website-card-horizontal__img-wrap img {
  transform: scale(1.05);
}

.website-card-horizontal__info {
  padding: 1.75rem 2rem 1.75rem 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.website-card-horizontal__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.website-card-horizontal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.website-card-horizontal__desc {
  font-size: 0.95rem;
  color: var(--text-subtle);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.website-card-horizontal__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}

/*===== 3-COLUMN VERTICAL RUNNING MARQUEE TESTIMONIALS =====*/
.testimoni-vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  height: 480px;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

.testimoni-col-container {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.testimoni-col-track {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.testimoni-col-track--fast {
  animation: marqueeVertical 20s linear infinite;
}

.testimoni-col-track--slow {
  animation: marqueeVertical 28s linear infinite;
}

.testimoni-col-track--normal {
  animation: marqueeVertical 24s linear infinite;
}

.testimoni-col-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeVertical {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes marqueeVerticalReverse {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.testimoni-vcard {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  width: 100%;
}

.testimoni-vcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.testimoni-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.2rem;
}

.testimoni-text {
  font-size: 0.92rem;
  color: var(--text-subtle);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimoni-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimoni-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.testimoni-role {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* ===== MEDIA QUERIES ===== */

/* Tablet & Below (≤992px) */
@media screen and (max-width: 992px) {
  .home {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding-top: calc(var(--header-height) + 2rem);
    min-height: auto;
  }

  .home__data {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home__title {
    font-size: 2.5rem;
  }

  .home__greeting,
  .home__subtitle,
  .home__actions,
  .home__social {
    justify-content: center;
    width: 100%;
  }

  .home__p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .about__container {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2rem;
  }

  .about__text-block {
    order: 1;
    width: 100%;
  }

  .about__img-block {
    order: 2;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .about__stats-block {
    order: 3;
    width: 100%;
  }

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

  .about__stat--wide {
    grid-column: 1 / -1;
  }

  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .testimoni-vertical-grid {
    grid-template-columns: 1fr;
    height: 440px;
    max-width: 500px;
  }

  .testimoni-col-container:nth-child(2),
  .testimoni-col-container:nth-child(3) {
    display: none;
  }

  .portfolio-marquee-track .portfolio-card {
    flex: 0 0 400px;
    min-width: 400px;
    max-width: 400px;
  }
}

/* Mobile (≤768px) */
@media screen and (max-width: 768px) {
  .bd-grid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section {
    padding: 3.5rem 0 2rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .nav__cta {
    gap: 0.5rem;
  }

  .nav__cta .button--secondary {
    display: inline-flex !important;
    padding: 0.4rem 0.75rem !important;
    font-size: 0.78rem !important;
    gap: 0.3rem;
  }

  .home {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--header-height) + 5rem);
    padding-bottom: 4rem;
    gap: 2.25rem;
  }

  .home__title {
    font-size: 2.15rem;
  }

  .home__subtitle {
    font-size: 1.05rem;
  }

  .home__p {
    font-size: 0.95rem;
  }

  .home__img-wrapper {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .about__img {
    max-width: 320px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .about__subtitle {
    font-size: 1.5rem;
  }

  .about__text {
    font-size: 0.95rem;
  }

  .about__stat-num {
    font-size: 2rem;
  }

  .contact__form-box,
  .contact__social-box {
    padding: 1.5rem 1.25rem;
  }

  .contact__box-title {
    font-size: 1.15rem;
  }

  .portfolio-marquee-track .portfolio-card {
    flex: 0 0 320px;
    min-width: 320px;
    max-width: 320px;
  }

  .design-hero {
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .website-card-horizontal {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .website-card-horizontal__info {
    padding: 1.5rem;
  }

  .website-card-horizontal__title {
    font-size: 1.15rem;
  }
}

/* Small Mobile (≤480px) */
@media screen and (max-width: 480px) {
  .bd-grid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section {
    padding: 3rem 0 1.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .home {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--header-height) + 5.5rem);
    padding-bottom: 4rem;
    gap: 2rem;
  }

  .home__title {
    font-size: 1.85rem;
  }

  .home__subtitle {
    font-size: 0.95rem;
  }

  .home__p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .home__actions {
    margin-bottom: 1.5rem;
  }

  .home__social-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .home__img-wrapper {
    max-width: 270px;
  }

  .about__img {
    max-width: 290px !important;
  }

  .button {
    padding: 0.75rem 1.4rem;
    font-size: 0.88rem;
  }

  .about__container {
    gap: 1.75rem;
  }

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

  .about__stat--wide {
    grid-column: 1 / -1;
  }

  .about__stat {
    padding: 1rem 1.15rem;
    min-height: auto;
  }

  .about__stat-num {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .plus-sign {
    font-size: 1.5rem;
  }

  .about__stat-label {
    font-size: 0.82rem;
  }

  .stat-pill-btn {
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
  }

  .portfolio-marquee-track .portfolio-card {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
  }

  .portfolio-more {
    margin-top: 2rem;
  }

  .testimoni-vertical-grid {
    height: 380px;
  }

  .testimoni-vcard {
    padding: 1.15rem;
  }

  .testimoni-text {
    font-size: 0.85rem;
  }

  .testimoni-name {
    font-size: 0.88rem;
  }

  .contact__wrapper {
    gap: 1.25rem;
  }

  .contact__social-item {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .contact__social-icon-wrap {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
  }

  .contact__social-val {
    font-size: 0.88rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer__brand {
    text-align: center;
  }

  .footer__tagline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer__copy {
    font-size: 0.82rem;
  }

  .slider-nav {
    display: none;
  }

  .design-modal__content {
    max-height: 90vh;
    border-radius: var(--radius-lg);
  }

  .design-modal {
    padding: 0.75rem;
  }

  .design-modal__bar {
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .website-card-horizontal__actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* ===== PHOTO FRAME BORDER & STYLING ===== */
.home__blob-wrap {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(226, 232, 240, 0.9);
  background: #ffffff;
  transition: all 0.3s ease;
}

.home__blob-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.6rem;
  transition: transform 0.3s ease;
}

.home__blob-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.28);
}