/* ==========================================================================
   SISIRUMA STUDIO - Official Styling (sisirumastudio.com)
   Category: Architectural Design & Construction Services
   ========================================================================== */

/* 1. DESIGN SYSTEM VARIABLES */
:root {
  /* Color Palette - High End Modern Architectural Neutral */
  --clr-bg: #f9f7f4;
  --clr-surface: #ffffff;
  --clr-surface-dark: #141518;
  --clr-surface-card: #1c1e22;
  
  --clr-text-primary: #18191c;
  --clr-text-muted: #5e636e;
  --clr-text-light: #f4f5f7;
  --clr-text-dim: #989ea9;

  --clr-primary: #1c1e22;
  --clr-accent: #c49a63;
  --clr-accent-hover: #b28851;
  --clr-accent-light: #f7f1e7;
  --clr-terracotta: #b35a38;
  
  --clr-whatsapp: #25d366;
  --clr-whatsapp-hover: #1eae54;
  
  --clr-border: #e3dec;
  --clr-border-dark: #2d3036;

  /* Typography */
  --ff-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --ff-serif: 'Playfair Display', Georgia, serif;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 8px 30px rgba(196, 154, 99, 0.25);

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. BASE & RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--ff-sans);
  background-color: var(--clr-bg);
  color: var(--clr-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

button, input, select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--clr-accent) 0%, #e5c396 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 3. BUTTONS & UI CONTROLS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--clr-accent);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--clr-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--clr-border-dark);
  color: var(--clr-text-primary);
}

.btn-outline:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.btn-wa {
  background-color: var(--clr-whatsapp);
  color: #ffffff;
}

.btn-wa:hover {
  background-color: var(--clr-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-banner {
  background-color: var(--clr-whatsapp);
  color: #ffffff;
  border-radius: var(--radius-sm);
}

.btn-whatsapp-banner:hover {
  background-color: var(--clr-whatsapp-hover);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* 4. TOP BAR & HEADER */
.top-bar {
  background-color: #0d0e10;
  color: var(--clr-text-dim);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.top-info span, .top-actions a {
  margin-right: 1.5rem;
}

.top-actions a:hover {
  color: var(--clr-accent);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-surface-dark);
  color: var(--clr-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.brand-name {
  display: block;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--clr-primary);
}

.brand-sub {
  display: block;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--clr-accent);
}

.nav-list {
  display: flex;
  gap: 1.8rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--clr-text-primary);
  font-weight: 600;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--clr-accent);
  transition: var(--transition);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-header-survey {
  background-color: var(--clr-accent);
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(196, 154, 99, 0.28);
  transition: var(--transition);
}

.btn-header-survey:hover {
  background-color: var(--clr-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--clr-primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* 5. HERO SECTION */
.hero-section {
  position: relative;
  padding: 7rem 0 6rem;
  background-color: var(--clr-surface-dark);
  color: var(--clr-text-light);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 19, 22, 0.88) 0%, rgba(18, 19, 22, 0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(196, 154, 99, 0.15);
  border: 1px solid rgba(196, 154, 99, 0.4);
  color: var(--clr-accent);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--ff-sans);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--clr-text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.8rem;
}

.stat-card {
  text-align: center;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--clr-accent);
}

.stat-plus {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--clr-text-dim);
  margin-top: 0.2rem;
}

/* 6. SECTION HEADERS */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--clr-accent);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--clr-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 680px;
  margin: 0 auto 3rem;
}

/* 7. SERVICES SECTION */
.services-section {
  padding: 6rem 0;
}

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

.service-card {
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.service-card.highlight {
  border: 2px solid var(--clr-accent);
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
}

.service-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--clr-accent);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--clr-accent-light);
  color: var(--clr-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--clr-primary);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 2rem;
  margin-top: auto;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--clr-text-primary);
  margin-bottom: 0.75rem;
}

.service-features li i {
  color: var(--clr-accent);
  font-size: 0.85rem;
}

.service-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--clr-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.service-link:hover {
  color: var(--clr-accent-hover);
  gap: 0.75rem;
}

/* 8. TENTANG KAMI / PROFIL STUDIO SECTION */
.about-section {
  padding: 6rem 0;
  background-color: var(--clr-accent-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--clr-surface-dark);
  color: #ffffff;
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.exp-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--clr-text-dim);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.about-headline {
  font-size: 2.1rem;
  line-height: 1.22;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
  color: var(--clr-primary);
}

.about-lead {
  font-size: 1.1rem;
  color: var(--clr-text-primary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.about-desc {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pillar-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--clr-surface);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pillar-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.pillar-item p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* 9. KENAPA MEMILIH KAMI SECTION (DARK THEME) */
.why-us-section {
  padding: 6rem 0;
  background-color: var(--clr-surface-dark);
  color: var(--clr-text-light);
}

.why-us-section .section-title {
  color: #ffffff;
}

.why-us-section .section-subtitle {
  color: var(--clr-text-dim);
}

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

.why-card {
  background: var(--clr-surface-card);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  transition: var(--transition);
}

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

.why-card.highlight-card {
  border: 2px solid var(--clr-accent);
  background: linear-gradient(180deg, #1c1e22 0%, #292621 100%);
}

.why-icon {
  width: 54px;
  height: 54px;
  background: rgba(196, 154, 99, 0.15);
  color: var(--clr-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--clr-text-dim);
  line-height: 1.6;
}

/* 9. PORTFOLIO SHOWCASE SECTION */
.portfolio-section {
  padding: 6rem 0;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--clr-primary);
  color: #ffffff;
  border-color: var(--clr-primary);
}

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

.portfolio-card {
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}

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

.card-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 19, 22, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .card-overlay {
  opacity: 1;
}

.card-tag {
  align-self: flex-start;
  background: var(--clr-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.btn-view-project {
  background: #ffffff;
  color: var(--clr-primary);
  border: none;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  align-self: center;
  transition: var(--transition);
}

.btn-view-project:hover {
  background: var(--clr-accent);
  color: #fff;
}

.card-content {
  padding: 1.5rem;
}

.project-location {
  font-size: 0.8rem;
  color: var(--clr-accent);
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.project-specs {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* 10. BEFORE & AFTER RENOVATION SLIDER */
.before-after-section {
  padding: 6rem 0;
  background-color: var(--clr-accent-light);
}

.ba-slider-container {
  position: relative;
  max-width: 960px;
  height: 520px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.ba-before {
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 3px solid #ffffff;
}

.ba-before img {
  width: 960px; /* Matched container width for perfect alignment */
  max-width: none;
}

.ba-badge {
  position: absolute;
  top: 20px;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  z-index: 3;
}

.badge-text-mobile {
  display: none;
}

.before-badge {
  left: 20px;
  background: rgba(18, 19, 22, 0.85);
  color: #ffffff;
}

.after-badge {
  right: 20px;
  background: var(--clr-accent);
  color: #ffffff;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 4px;
  background: #ffffff;
  z-index: 10;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  font-size: 1.1rem;
}

.ba-notes {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

/* 11. WORKFLOW SECTION (SIMPLE, CLEAN & PROFESSIONAL) */
.workflow-section {
  padding: 6rem 0;
  background-color: var(--clr-bg);
}

.workflow-timeline-wrapper {
  position: relative;
}

/* Subtle line connecting steps on desktop */
.workflow-line {
  position: absolute;
  top: 48px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: var(--clr-border);
  z-index: 1;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.workflow-card {
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  padding: 2rem 1.4rem;
  border: 1px solid var(--clr-border);
  border-top: 3px solid transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.workflow-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--clr-accent);
  box-shadow: var(--shadow-md);
}

.workflow-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.workflow-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
  opacity: 0.85;
}

.workflow-icon {
  width: 48px;
  height: 48px;
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.workflow-card:hover .workflow-icon {
  background: var(--clr-accent);
  color: #ffffff;
}

.workflow-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 0.6rem;
}

.workflow-desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* 12. TESTIMONIALS & FAQ */
.testimonials-section {
  padding: 6rem 0;
  background: var(--clr-surface-dark);
  color: var(--clr-text-light);
}

.testimonials-section .section-title {
  color: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--clr-surface-card);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-md);
  padding: 2.2rem;
}

.stars {
  color: #f1c40f;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.98rem;
  color: #d1d5db;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.client-avatar {
  width: 44px;
  height: 44px;
  background: var(--clr-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-name {
  font-size: 1rem;
  font-weight: 700;
}

.client-project {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
}

/* MARQUEE AUTO SCROLL SLIDER FOR TESTIMONIALS */
.testimonials-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1.5rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

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

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonials-track .testimonial-card {
  width: 360px;
  flex-shrink: 0;
}

/* SECTION LOGO MITRA KAMI */
.partners-section {
  padding: 5rem 0;
  background-color: var(--clr-surface-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.partner-card {
  background: var(--clr-surface-card);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: var(--transition);
}

.partner-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.partner-icon {
  font-size: 2rem;
  color: var(--clr-accent);
}

.partner-name {
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-align: center;
}

.faq-section {
  padding: 6rem 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.4rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--clr-primary);
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  color: var(--clr-accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.4rem;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.4rem 1.4rem;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 13. CTA BANNER & FOOTER */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1c1e22 0%, #121316 100%);
  color: #ffffff;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--clr-text-dim);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-contact {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid var(--clr-accent);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-cta-contact:hover {
  background-color: var(--clr-accent);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.site-footer {
  background: #0b0c0e;
  color: var(--clr-text-dim);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1.2rem;
}

.footer-logo .brand-name {
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: var(--clr-accent);
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
}

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

.contact-info-list p {
  display: flex;
  gap: 0.75rem;
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.contact-info-list i {
  color: var(--clr-accent);
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

/* 14. MODAL OVERLAYS */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-container.modal-lg {
  max-width: 800px;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--clr-text-muted);
}

.modal-close:hover {
  color: var(--clr-primary);
}

.modal-header {
  margin-bottom: 1.8rem;
}

.modal-icon {
  font-size: 2.2rem;
  color: var(--clr-accent);
  margin-bottom: 0.6rem;
}

.modal-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}

.form-group-modal {
  margin-bottom: 1.2rem;
}

.form-group-modal label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;

}

.form-group-modal input, .form-group-modal select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.form-group-modal input:focus, .form-group-modal select:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(196, 154, 99, 0.2);
}

/* 15. FLOATING WHATSAPP BUTTON */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--clr-whatsapp);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-wa:hover {
  transform: scale(1.1);
  background-color: var(--clr-whatsapp-hover);
}

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--clr-whatsapp);
  opacity: 0.6;
  animation: pulse-ring 2s infinite;
  z-index: -1;
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--clr-surface-dark);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.floating-wa:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
}

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

/* 17. INTERACTIVE CMS ADMIN SIMULATOR STYLES */
.floating-cms-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 99;
  background: var(--clr-primary);
  color: var(--clr-accent);
  border: 1px solid var(--clr-accent);
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.floating-cms-btn:hover {
  background: var(--clr-accent);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(196, 154, 99, 0.4);
}

.cms-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cms-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cms-drawer-container {
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: #141518;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.cms-drawer-overlay.active .cms-drawer-container {
  transform: translateX(0);
}

.cms-drawer-header {
  padding: 1.5rem;
  background: #0d0e10;
  border-bottom: 1px solid #282a30;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cms-brand-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cms-header-icon {
  font-size: 1.6rem;
  color: var(--clr-accent);
}

.cms-drawer-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.cms-drawer-header p {
  font-size: 0.75rem;
  color: #8a919e;
  margin: 0;
}

.cms-close-btn {
  background: none;
  border: none;
  color: #8a919e;
  font-size: 1.8rem;
  cursor: pointer;
}

.cms-close-btn:hover {
  color: #ffffff;
}

.cms-tabs {
  display: flex;
  background: #1a1c21;
  border-bottom: 1px solid #282a30;
  overflow-x: auto;
}

.cms-tab-btn {
  flex: 1;
  padding: 0.8rem 0.6rem;
  background: none;
  border: none;
  color: #8a919e;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.cms-tab-btn.active {
  color: var(--clr-accent);
  border-bottom-color: var(--clr-accent);
  background: rgba(196, 154, 99, 0.08);
}

.cms-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cms-tab-content {
  display: none;
  flex-direction: column;
  gap: 1.2rem;
}

.cms-tab-content.active {
  display: flex;
}

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

.cms-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cms-group input, .cms-group textarea {
  background: #0d0e10;
  border: 1px solid #282a30;
  color: #ffffff;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.cms-group input:focus, .cms-group textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
}

.cms-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.cms-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.cms-drawer-footer {
  padding: 1.2rem 1.5rem;
  background: #0d0e10;
  border-top: 1px solid #282a30;
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN - TABLET (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.6rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-line { display: none; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE & SMALL DEVICES (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* 1. Base Container & Global Section Spacing */
  .container {
    padding: 0 1.2rem;
  }

  .about-section,
  .services-section,
  .why-us-section,
  .portfolio-section,
  .before-after-section,
  .workflow-section,
  .testimonials-section,
  .partners-section,
  .faq-section,
  .cta-banner {
    padding: 3.5rem 0;
  }

  /* 2. Global Typography Scaling */
  .section-tag {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
  }

  .section-title {
    font-size: 1.65rem;
    line-height: 1.28;
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  /* 3. Header & Navigation */
  .top-bar { display: none; }

  .site-header {
    background-color: rgba(255, 255, 255, 0.96);
  }

  .header-container {
    height: 70px;
  }

  .brand-logo {
    gap: 0.6rem;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .brand-name {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }

  .brand-sub {
    font-size: 0.62rem;
    letter-spacing: 3px;
  }

  /* HIDE Jadwal Survey button in header on mobile as explicitly requested */
  .header-actions .btn-header-survey { 
    display: none !important;
  }

  .mobile-toggle { 
    display: flex; 
    margin-left: 0.5rem;
  }
  
  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--clr-border);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .main-nav.active {
    display: block;
  }

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

  .nav-link {
    font-size: 0.95rem;
    padding: 0.35rem 0;
  }

  /* 4. Hero Section */
  .hero-section {
    padding: 4.5rem 0 3.5rem;
    min-height: auto;
  }

  .hero-badge {
    padding: 0.35rem 0.95rem;
    font-size: 0.78rem;
    margin-bottom: 1.2rem;
  }

  .hero-title { 
    font-size: 1.85rem; 
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 0.95rem 1.4rem;
    font-size: 0.95rem;
  }

  .hero-stats { 
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    padding: 1.2rem 0.8rem;
    border-radius: var(--radius-md);
  }

  .stat-card:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-plus {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.75rem;
    margin-top: 0.1rem;
  }

  /* 5. Tentang Kami Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-img-wrapper img {
    height: 280px;
  }

  .about-experience-badge {
    padding: 0.8rem 1.2rem;
    bottom: 16px;
    right: 16px;
  }

  .exp-num {
    font-size: 1.75rem;
  }

  .exp-text {
    font-size: 0.65rem;
  }

  .about-headline {
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 0.8rem;
  }

  .about-lead {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }

  .about-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .pillar-item {
    padding: 1rem;
    gap: 0.9rem;
  }

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

  .pillar-item h4 {
    font-size: 0.95rem;
  }

  .pillar-item p {
    font-size: 0.82rem;
  }

  /* 6. Services & Why Us & Portfolio Grids */
  .services-grid, 
  .why-us-grid, 
  .portfolio-grid, 
  .testimonials-grid { 
    grid-template-columns: 1fr; 
    gap: 1.2rem;
  }

  .service-card {
    padding: 1.6rem 1.2rem;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .service-title {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .service-desc {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .service-features li {
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
  }

  .why-card {
    padding: 1.5rem 1.2rem;
  }

  .why-icon {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
  }

  .why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .why-card p {
    font-size: 0.85rem;
  }

  .portfolio-filters {
    gap: 0.4rem;
    margin-bottom: 1.8rem;
  }

  .filter-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
  }

  .card-img-wrapper {
    height: 220px;
  }

  .card-content {
    padding: 1.2rem 1rem;
  }

  .project-title {
    font-size: 1.1rem;
  }

  .project-specs {
    font-size: 0.8rem;
  }

  /* 7. Before & After Slider */
  .ba-slider-container { 
    height: 280px; 
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
  }

  .ba-badge {
    top: 12px;
    padding: 0.35rem 0.8rem;
    font-size: 0.7rem;
  }

  .badge-text-desktop { display: none !important; }
  .badge-text-mobile { display: inline !important; }

  .before-badge { left: 12px; }
  .after-badge { right: 12px; }

  .ba-handle-btn {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }

  .ba-notes {
    font-size: 0.82rem;
  }

  /* 8. Workflow Section */
  .workflow-grid { 
    grid-template-columns: 1fr; 
    gap: 1rem; 
  }

  .workflow-card { 
    padding: 1.5rem 1.2rem; 
  }

  .workflow-card-head {
    margin-bottom: 1rem;
  }

  .workflow-num {
    font-size: 1.5rem;
  }

  .workflow-icon {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .workflow-title {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }

  .workflow-desc {
    font-size: 0.85rem;
  }

  /* 9. Testimonials Marquee */
  .testimonials-marquee-wrapper {
    padding: 0.5rem 0;
  }

  .testimonials-track {
    gap: 1.2rem;
  }

  .testimonials-track .testimonial-card {
    width: 280px;
    padding: 1.5rem 1.2rem;
  }

  .testimonial-text {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .client-avatar {
    width: 38px;
    height: 38px;
  }

  .client-name {
    font-size: 0.9rem;
  }

  .client-project {
    font-size: 0.75rem;
  }

  /* 10. Partners & FAQ */
  .partners-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .partner-card {
    padding: 1.1rem 0.8rem;
  }

  .partner-icon {
    font-size: 1.6rem;
  }

  .partner-name {
    font-size: 0.68rem;
  }

  .faq-accordion {
    gap: 0.75rem;
  }

  .faq-question {
    padding: 1.1rem 1rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1rem;
    font-size: 0.88rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1.1rem;
  }

  /* 11. CTA Banner & Footer */
  .cta-banner {
    padding: 3.5rem 0;
  }

  .cta-title {
    font-size: 1.55rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }

  .cta-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .cta-buttons .btn {
    width: 100%;
    padding: 0.95rem 1.4rem;
    font-size: 0.95rem;
  }

  .site-footer {
    padding: 3.5rem 0 1.8rem;
  }

  .footer-content { 
    grid-template-columns: 1fr; 
    gap: 2.2rem;
    margin-bottom: 2.5rem;
  }

  .footer-logo {
    margin-bottom: 0.8rem;
  }

  .footer-tagline {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-links li {
    margin-bottom: 0.6rem;
  }

  .footer-links a {
    font-size: 0.88rem;
  }

  .contact-info-list p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.8rem;
  }

  /* 12. Floating Action Controls & Modals on Mobile */
  .floating-cms-btn {
    bottom: 16px;
    left: 14px;
    padding: 0.55rem 0.95rem;
    font-size: 0.75rem;
    gap: 0.4rem;
  }

  .floating-wa {
    bottom: 16px;
    right: 14px;
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
  }

  .wa-tooltip {
    display: none !important;
  }

  .modal-container {
    padding: 1.8rem 1.2rem;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-md);
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    font-size: 1.6rem;
  }

  .modal-header h3 {
    font-size: 1.25rem;
  }

  .modal-header p {
    font-size: 0.84rem;
  }

  .project-modal-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }

  .project-modal-grid img {
    height: 220px !important;
  }

  .project-modal-grid h2 {
    font-size: 1.4rem !important;
    margin-bottom: 0.6rem !important;
  }
}

/* Extra small mobile screens (max-width: 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }

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

  .exp-num {
    font-size: 1.5rem;
  }

  .exp-text {
    font-size: 0.6rem;
  }

  .about-experience-badge {
    padding: 0.6rem 0.9rem;
  }

  .card-img-wrapper {
    height: 190px;
  }
}
