/* =============================================
   GARAGE THEME - MAIN VANILLA CSS
   Premium Vehicle Detailing & Maintenance Theme
   ============================================= */

/* --- Custom Properties / CSS variables --- */
:root {
  --primary: #da3e1e;
  /* RKR Teknik Red/Orange */
  --primary-rgb: 218, 62, 30;
  --primary-light: #fef2f0;
  /* Soft pink-orange background */
  --accent: #bf3418;
  /* Lighter Crimson for hover/badges */
  --accent-light: #fbe6e2;
  --dark: #111827;
  /* Dark Gray/Black for text and headings */
  --dark-light: #1F2937;
  --light: #F9FAFB;
  /* Light gray background */
  --gray: #4B5563;
  /* Text color */
  --gray-light: #9CA3AF;
  /* Muted text color */
  --white: #ffffff;
  --border: #E5E7EB;
  /* Light border */
  --success: #10B981;
  /* Green for WhatsApp / success */

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px -2px rgba(218, 62, 30, 0.08);
  --shadow-lg: 0 10px 30px -5px rgba(218, 62, 30, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* --- Base & Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.site-main {
  /* padding-top removed because header is sticky */
}

body {
  font-family: var(--font-body);
  color: var(--gray);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* --- Typography --- */
h1,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}


h2 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.0;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--gray);
}

.lead {
  font-size: 1.125rem;
  color: var(--gray);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-light {
  background-color: var(--light);
}

.section-primary-light {
  background-color: var(--primary-light);
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.flex-1 {
  flex: 1 1 0%;
}

.shrink-0 {
  flex-shrink: 0;
}

/* Grid utilities */
.grid {
  display: grid;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.grid-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .grid-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-lg-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .col-span-lg-5 {
    grid-column: span 5 / span 5;
  }

  .col-span-lg-7 {
    grid-column: span 7 / span 7;
  }
}

/* Alignment and margins */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.relative {
  position: relative;
}

.overflow-hidden {
  border-radius: inherit;
  overflow: hidden;
}

.z-10 {
  z-index: 10;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

/* Display and objects */
.hidden {
  display: none !important;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

/* --- Section Headers --- */
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.section-title-wrapper {
  max-width: 650px;
  margin-bottom: 3.5rem;
}

.section-title-wrapper.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(218, 62, 30, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-success {
  background-color: var(--success);
  color: var(--white);
  border-color: var(--success);
}

.btn-success:hover {
  background-color: #059669;
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  border-b: 1px solid var(--border);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.navbar {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: auto;
  /* Push everything else to the right */
}

.logo-icon-rkrteknik {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  line-height: 1;
}

.logo-text-rkrteknik {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--dark);
  letter-spacing: -0.5px;
}

.brand-red {
  color: var(--primary);
}

.btn-cta {
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  padding: 0.65rem 1.75rem !important;
  font-size: 0.9rem !important;
}

.logo-image,
.custom-logo,
.custom-logo-link img {
  max-height: 2.5rem;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Desktop Menu */
.desktop-nav {
  display: none;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-menu>li {
  position: relative;
}

.desktop-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark-light);
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.desktop-menu a:hover,
.desktop-menu li.current-menu-item>a {
  color: var(--primary);
}

/* Submenu / Dropdowns */
.desktop-menu ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 200px;
  padding: 0.75rem 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: none;
  flex-direction: column;
  z-index: 50;
  margin-top: 0.5rem;
}

.desktop-menu li:hover>ul.sub-menu {
  display: flex;
}

.desktop-menu ul.sub-menu a {
  padding: 0.5rem 1.5rem;
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
}

.desktop-menu ul.sub-menu a:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 1.25rem;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Mobile Dropdown Navigation */
.mobile-navigation-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 99;
}

.mobile-navigation-dropdown.is-open {
  display: flex;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  display: block;
}

.mobile-menu ul.sub-menu {
  padding-left: 1rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 2px solid var(--border);
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }

  .mobile-menu-toggle {
    display: none;
  }
}

/* =============================================
   HERO SECTION (FULL WIDTH GRADIENT)
   ============================================= */
.hero-full-bg {
  background-color: var(--white);
  padding: 6rem 0;
  position: relative;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 768px) {
  .hero-gradient-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0) 100%);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.hero-text-area {
  max-width: 600px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-light);
  color: var(--primary);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-rating-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.rating-avatar-group {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.125rem;
}

.rating-text {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.rating-text span {
  color: var(--primary);
}



/* =============================================
   ABOUT US SECTION (ZANTRIK STYLE)
   ============================================= */
.about-section {
  padding: 6rem 0;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
}

.about-text-content {
  max-width: 650px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
}

.about-description p {
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    gap: 5rem;
  }

  .about-stats-grid,
  .about-slider-wrapper {
    grid-column: span 5;
    min-width: 0;
  }

  .about-text-content {
    grid-column: span 7;
  }
}

/* =============================================
   WHY CHOOSE US SECTION
   ============================================= */
.choose-grid {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.choose-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.choose-cards-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.choose-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.choose-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.choose-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.choose-card-title {
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.choose-card-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gray);
}

.choose-image-area {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.choose-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .choose-cards-row {
    flex-direction: row;
  }

  .choose-cards-row .choose-card {
    flex: 1;
  }

  .choose-cards-row:last-child .choose-card {
    max-width: calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .choose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 4rem;
  }
}

/* =============================================
   IN-BETWEEN CONTACT BANNER
   ============================================= */
/* Question Dashboard Banner */
.question-banner-section {
  width: 100%;
  height: 250px;
  background-image: url('../images/rkrteknik-dashboard.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 4rem 0;
}

.question-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.question-capsule {
  position: relative;
  z-index: 2;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  margin: 0 1rem;
  width: calc(100% - 2rem);
  max-width: max-content;
}

.question-capsule-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.question-capsule-phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.question-capsule-phone i {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .question-capsule {
    flex-direction: row;
    gap: 2rem;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-full);
    width: auto;
    margin: 0;
  }

  .question-capsule-phone {
    font-size: 1.8rem;
  }
}

/* =============================================
   SERVICES SECTION (ZANTRIK 5-COLUMN STYLE)
   ============================================= */
.services-section {
  padding: 6rem 0;
}

.services-special-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.services-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.service-special-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.service-special-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.service-special-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  align-self: flex-start;
}

.service-special-title {
  margin-bottom: 0.25rem;
  color: var(--dark);
  font-size: 1.1rem;
}

.service-special-desc {
  font-size: 0.825rem;
  line-height: 1.5;
  color: var(--gray);
}

.services-center-media {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}

.services-center-image {
  max-width: 250px;
  height: auto;
  object-fit: contain;
  transition: var(--transition);
}

.services-special-layout:hover .services-center-image {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .services-special-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .services-center-media {
    grid-column: span 2;
    margin: 2rem 0;
  }
}

@media (min-width: 1024px) {
  .services-special-layout {
    grid-template-columns: 1fr 1fr 260px 1fr 1fr;
    align-items: center;
    gap: 1rem;
  }

  .services-center-media {
    grid-column: span 1;
    margin: 0;
  }
}

/* =============================================
   GALLERY SECTION (ZANTRIK STYLE)
   ============================================= */
.gallery-section {
  padding: 5rem 0;
}

.gallery-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.gallery-tab-btn {
  padding: 0.65rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-weight: 600;
  font-family: var(--font-heading);
  background-color: var(--white);
  color: var(--gray);
  transition: var(--transition);
}

.gallery-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.gallery-tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(122, 12, 46, 0.15);
}

/* Grid & Items */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
}

.gallery-item.gallery-hidden {
  display: none !important;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(122, 12, 46, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  padding: 1.5rem;
  text-align: center;
  color: var(--white);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-item-overlay i.fa-magnifying-glass-plus,
.gallery-item-overlay i.fa-circle-play {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay i {
  transform: translateY(0);
}

.gallery-item-caption {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
}

.gallery-load-more {
  text-align: center;
  margin-top: 3.5rem;
}

/* =============================================
   BLOG SECTION (MODERN HORIZONTAL CARD STYLE)
   ============================================= */
.blog-section {
  padding: 5rem 0;
}

.blog-modern-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .blog-modern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.blog-modern-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-modern-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-modern-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-modern-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-modern-card:hover .blog-modern-media img {
  transform: scale(1.05);
}

.blog-modern-content {
  padding: 0rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-modern-category {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.blog-modern-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-modern-title a:hover {
  color: var(--primary);
}

.blog-modern-excerpt {
  color: var(--gray);
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-modern-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.blog-modern-link:hover {
  color: var(--primary);
}



.blog-card-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card-link:hover {
  color: var(--accent);
}

/* =============================================
   CALL TO ACTION (CTA) BANNER
   ============================================= */

.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ai-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ai-card {
  background-color: #F6ECEE;
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
  text-align: left;
}

.ai-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ai-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  align-self: flex-start;
}

.ai-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.ai-card-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =============================================
   CALL TO ACTION (CTA) BANNER 
   ============================================= */
.cta-section {
  padding-bottom: 5rem;
}

.promo-banner {
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
  box-shadow: 0 20px 40px rgba(218, 62, 30, 0.4);
}

.promo-content {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.promo-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white) !important;
  margin-bottom: 2rem;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--primary);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-heading);
  transition: var(--transition);
}

.promo-btn:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.promo-car-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: none;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 1) 40%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 15%, rgba(0, 0, 0, 1) 40%);
}

@media (min-width: 768px) {
  .promo-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 4rem;
  }

  .promo-car-img {
    display: block;
  }
}

/* =============================================
   FOOTER SECTION
   ============================================= */
.site-footer {
  background-color: var(--white);
  color: var(--gray);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-top {
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-start;
}

.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  margin-top: -0.25rem;
  /* Align perfectly with other headings */
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray);
}

.footer-newsletter {
  position: relative;
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--white);
}

.footer-newsletter input {
  padding: 0.875rem 1rem;
  width: 100%;
  font-size: 0.875rem;
  color: var(--dark);
  background-color: transparent;
}

.footer-newsletter input::placeholder {
  color: var(--gray-light);
}

.footer-newsletter input:focus {
  outline: none;
}

.footer-newsletter button {
  background-color: var(--primary);
  color: var(--white);
  padding: 0 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-newsletter button:hover {
  background-color: var(--accent);
}

.footer-heading {
  color: var(--dark);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  color: var(--gray) !important;
}

.footer-links li a:hover {
  color: var(--primary) !important;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-icons a {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--primary);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social-icons a:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  color: var(--gray-light);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--gray-light);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--gray-light);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* =============================================
   LIGHTBOX OVERLAY
   ============================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
}

.lightbox-overlay.flex {
  display: flex;
}

.lightbox-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 2.25rem;
  transition: var(--transition);
  z-index: 9999;
  background: transparent;
  border: none;
  cursor: pointer;
}

.lightbox-close:hover {
  color: var(--primary-light);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-arrow:hover {
  background-color: var(--primary);
}

.lightbox-prev {
  left: 0.5rem;
}

.lightbox-next {
  right: 0.5rem;
}

@media (min-width: 1024px) {
  .lightbox-prev {
    left: -4.5rem;
  }

  .lightbox-next {
    right: -4.5rem;
  }
}

.lightbox-media {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--white);
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  text-align: center;
}

/* =============================================
   AUTO TOC STYLING
   ============================================= */
.post-toc-box {
  background-color: var(--primary-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.toc-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc-list a {
  color: var(--dark-light);
  font-size: 0.95rem;
}

.toc-list a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.toc-h3 {
  padding-left: 1.25rem;
}

/* --- Floating WhatsApp Button --- */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--success);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  z-index: 99;
  transition: var(--transition);
}

.floating-wa-btn:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: #059669;
}

/* Slider Nav Hover Effect */
.aboutSwiper.nav-hover .swiper-button-next,
.aboutSwiper.nav-hover .swiper-button-prev {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aboutSwiper.nav-hover:hover .swiper-button-next,
.aboutSwiper.nav-hover:hover .swiper-button-prev {
  opacity: 1;
}

/* Slider Pagination (Dots) */
.aboutSwiper .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  background-color: var(--white, #ffffff);
  opacity: 0.5;
  transition: var(--transition, 0.3s);
}

.aboutSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

/* Slider Navigation (Arrows) */
.aboutSwiper .swiper-button-next,
.aboutSwiper .swiper-button-prev {
  background-color: rgba(218, 62, 30, 0.7);
  /* Transparan warna aksen (red) */
  color: var(--white, #ffffff);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.aboutSwiper .swiper-button-next::after,
.aboutSwiper .swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
}

.aboutSwiper .swiper-button-next:hover,
.aboutSwiper .swiper-button-prev:hover {
  background-color: rgba(218, 62, 30, 1);
  transform: scale(1.1);
}

/* =============================================
   RKR TEKNIK CUSTOM UI STYLES
   Clean White Theme with Red Accents
   ============================================= */

/* Common RKR Variables & Reset */
.site-main {
  background-color: #ffffff;
}

/* Section Strip */
.rkr-section-strip {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.rkr-strip-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.rkr-nav-dots {
  display: inline-flex;
  gap: 6px;
}

.rkr-nav-dots span {
  width: 5px;
  height: 5px;
  background-color: #d1d5db;
  border-radius: 50%;
}

.rkr-since-badge {
  background-color: #da3e1e;
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rkr-since-badge strong {
  font-weight: 800;
}

/* RKR Hero Section */
.rkr-hero {
  position: relative;
  background-color: #ffffff;
  padding: 9rem 0 6rem;
  /* top accounts for fixed header height ~80px */
  overflow: hidden;
}

.rkr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.2) 100%);
  z-index: 1;
}

.rkr-hero-curve-red {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: linear-gradient(135deg, rgba(218, 62, 30, 0.05) 0%, rgba(218, 62, 30, 0) 100%);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
}

.rkr-hero-curve-black {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40%;
  height: 80%;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.03) 0%, rgba(17, 24, 39, 0) 100%);
  border-radius: 50%;
  z-index: 1;
}

.rkr-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .rkr-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.rkr-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rkr-hero-top-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.rkr-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #da3e1e;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}

.rkr-hero-tagline {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.rkr-hero-desc {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* Connected Pill CTA Button */
.rkr-hero-pill-cta {
  display: inline-flex;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(218, 62, 30, 0.2);
  border: 2px solid #da3e1e;
  margin-top: 1rem;
  background-color: #ffffff;
}

.rkr-pill-left {
  background-color: #da3e1e;
  color: #ffffff;
  padding: 0.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  border-radius: 9999px 0 0 9999px;
  transition: all 0.3s ease;
}

.rkr-pill-left:hover {
  background-color: #bf3418;
}

.rkr-pill-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  opacity: 0.9;
  line-height: 1.2;
}

.rkr-pill-value {
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.rkr-pill-right {
  background-color: #ffffff;
  color: #111827;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  border-radius: 0 9999px 9999px 0;
  transition: all 0.3s ease;
}

.rkr-pill-right:hover {
  background-color: #f9fafb;
}

.rkr-pill-right i {
  font-size: 1.75rem;
  color: #25d366;
}

.rkr-pill-right-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rkr-pill-label-small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  font-weight: 700;
  line-height: 1.2;
}

.rkr-pill-phone {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  font-family: var(--font-heading);
}

/* Hero Visual Split (Hexagon Images) */
.rkr-hero-visual-split {
  position: relative;
  width: 100%;
  height: 520px;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.rkr-hero-frame {
  position: absolute;
  background-color: #ffffff;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 115.47'%3E%3Cpath d='M 50,0 C 53.6,0 57.1,1.1 60,2.8 L 93.3,22 C 97.4,24.4 100,28.9 100,33.7 L 100,81.8 C 100,86.6 97.4,91.1 93.3,93.5 L 60,112.7 C 57.1,114.4 53.6,115.5 50,115.5 C 46.4,115.5 42.9,114.4 40,112.7 L 6.7,93.5 C 2.6,91.1 0,86.6 0,81.8 L 0,33.7 C 0,28.9 2.6,24.4 6.7,22 L 40,2.8 C 42.9,1.1 46.4,0 50,0 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 115.47'%3E%3Cpath d='M 50,0 C 53.6,0 57.1,1.1 60,2.8 L 93.3,22 C 97.4,24.4 100,28.9 100,33.7 L 100,81.8 C 100,86.6 97.4,91.1 93.3,93.5 L 60,112.7 C 57.1,114.4 53.6,115.5 50,115.5 C 46.4,115.5 42.9,114.4 40,112.7 L 6.7,93.5 C 2.6,91.1 0,86.6 0,81.8 L 0,33.7 C 0,28.9 2.6,24.4 6.7,22 L 40,2.8 C 42.9,1.1 46.4,0 50,0 Z' fill='black'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.rkr-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 115.47'%3E%3Cpath d='M 50,0 C 53.6,0 57.1,1.1 60,2.8 L 93.3,22 C 97.4,24.4 100,28.9 100,33.7 L 100,81.8 C 100,86.6 97.4,91.1 93.3,93.5 L 60,112.7 C 57.1,114.4 53.6,115.5 50,115.5 C 46.4,115.5 42.9,114.4 40,112.7 L 6.7,93.5 C 2.6,91.1 0,86.6 0,81.8 L 0,33.7 C 0,28.9 2.6,24.4 6.7,22 L 40,2.8 C 42.9,1.1 46.4,0 50,0 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 115.47'%3E%3Cpath d='M 50,0 C 53.6,0 57.1,1.1 60,2.8 L 93.3,22 C 97.4,24.4 100,28.9 100,33.7 L 100,81.8 C 100,86.6 97.4,91.1 93.3,93.5 L 60,112.7 C 57.1,114.4 53.6,115.5 50,115.5 C 46.4,115.5 42.9,114.4 40,112.7 L 6.7,93.5 C 2.6,91.1 0,86.6 0,81.8 L 0,33.7 C 0,28.9 2.6,24.4 6.7,22 L 40,2.8 C 42.9,1.1 46.4,0 50,0 Z' fill='black'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.rkr-hero-frame:hover img {
  transform: scale(1.08);
}

.rkr-frame-1 {
  width: 420px;
  height: 470px;
  top: 5px;
  right: 15px;
  z-index: 2;
}

.rkr-frame-2 {
  width: 330px;
  height: 365px;
  bottom: 10px;
  left: -5px;
  z-index: 1;
}

.rkr-frame-1:hover,
.rkr-frame-2:hover {
  z-index: 10;
}

/* RKR Section Common */
.rkr-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.rkr-big-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #da3e1e;
  text-transform: uppercase;
  margin-bottom: 3rem;
  position: relative;
}

/* RKR Perkenalan Section */
.rkr-perkenalan {
  position: relative;
  overflow: hidden;
}

.rkr-perkenalan::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border: 40px solid rgba(218, 62, 30, 0.04);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.rkr-perkenalan::before {
  content: "";
  position: absolute;
  bottom: -130px;
  left: -130px;
  width: 300px;
  height: 300px;
  border: 15px solid rgba(17, 24, 39, 0.02);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.rkr-perkenalan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .rkr-perkenalan-grid {
    grid-template-columns: 1fr 1.4fr;
  }
}

.rkr-perkenalan-visual {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.rkr-perkenalan-img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 8px solid #ffffff;
}

.rkr-founder-card {
  position: absolute;
  bottom: -1.5rem;
  right: 5%;
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 5px solid #da3e1e;
  z-index: 2;
}

.rkr-founder-card img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.rkr-founder-card-placeholder {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #da3e1e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rkr-founder-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.rkr-founder-card p {
  font-size: 0.8rem;
  color: #da3e1e;
  font-weight: 600;
}

.rkr-perkenalan-text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.rkr-text-block h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #da3e1e;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.rkr-text-block p {
  color: #4b5563;
  line-height: 1.7;
}

/* RKR Visi Misi Section */
.rkr-visimisi {
  position: relative;
  overflow: hidden;
}

.rkr-visimisi::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 40px solid rgba(218, 62, 30, 0.04);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.rkr-visimisi::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -130px;
  width: 300px;
  height: 300px;
  border: 15px solid rgba(17, 24, 39, 0.02);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.rkr-vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .rkr-vm-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.rkr-vm-card {
  background-color: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.rkr-vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -10px rgba(218, 62, 30, 0.1);
}

.rkr-vm-header {
  background-color: #111827;
  color: #ffffff;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rkr-vm-card:first-child .rkr-vm-header {
  background-color: #da3e1e;
}

.rkr-vm-arrow {
  color: #ffffff;
  font-size: 1.2rem;
}

.rkr-vm-header h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

.rkr-vm-body {
  padding: 2.5rem;
  position: relative;
  min-height: 200px;
}

.rkr-vm-quote-marks {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 4rem;
  color: rgba(218, 62, 30, 0.08);
  font-family: serif;
  line-height: 1;
}

.rkr-vm-content {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.7;
}

.rkr-vm-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.rkr-vm-content ul li {
  position: relative;
  padding-left: 1.5rem;
}

.rkr-vm-content ul li::before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #da3e1e;
}

/* RKR Our Value Section v2 */
.rkr-value-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .rkr-value-grid-v2 {
    grid-template-columns: 1fr 1.2fr;
  }
}

.rkr-value-visual-v2 {
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.rkr-value-img-wrapper {
  position: relative;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  /* For white border */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 115.47'%3E%3Cpath d='M 50,0 C 53.6,0 57.1,1.1 60,2.8 L 93.3,22 C 97.4,24.4 100,28.9 100,33.7 L 100,81.8 C 100,86.6 97.4,91.1 93.3,93.5 L 60,112.7 C 57.1,114.4 53.6,115.5 50,115.5 C 46.4,115.5 42.9,114.4 40,112.7 L 6.7,93.5 C 2.6,91.1 0,86.6 0,81.8 L 0,33.7 C 0,28.9 2.6,24.4 6.7,22 L 40,2.8 C 42.9,1.1 46.4,0 50,0 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 115.47'%3E%3Cpath d='M 50,0 C 53.6,0 57.1,1.1 60,2.8 L 93.3,22 C 97.4,24.4 100,28.9 100,33.7 L 100,81.8 C 100,86.6 97.4,91.1 93.3,93.5 L 60,112.7 C 57.1,114.4 53.6,115.5 50,115.5 C 46.4,115.5 42.9,114.4 40,112.7 L 6.7,93.5 C 2.6,91.1 0,86.6 0,81.8 L 0,33.7 C 0,28.9 2.6,24.4 6.7,22 L 40,2.8 C 42.9,1.1 46.4,0 50,0 Z' fill='black'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.rkr-value-img-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 100 / 115.47;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 115.47'%3E%3Cpath d='M 50,0 C 53.6,0 57.1,1.1 60,2.8 L 93.3,22 C 97.4,24.4 100,28.9 100,33.7 L 100,81.8 C 100,86.6 97.4,91.1 93.3,93.5 L 60,112.7 C 57.1,114.4 53.6,115.5 50,115.5 C 46.4,115.5 42.9,114.4 40,112.7 L 6.7,93.5 C 2.6,91.1 0,86.6 0,81.8 L 0,33.7 C 0,28.9 2.6,24.4 6.7,22 L 40,2.8 C 42.9,1.1 46.4,0 50,0 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 115.47'%3E%3Cpath d='M 50,0 C 53.6,0 57.1,1.1 60,2.8 L 93.3,22 C 97.4,24.4 100,28.9 100,33.7 L 100,81.8 C 100,86.6 97.4,91.1 93.3,93.5 L 60,112.7 C 57.1,114.4 53.6,115.5 50,115.5 C 46.4,115.5 42.9,114.4 40,112.7 L 6.7,93.5 C 2.6,91.1 0,86.6 0,81.8 L 0,33.7 C 0,28.9 2.6,24.4 6.7,22 L 40,2.8 C 42.9,1.1 46.4,0 50,0 Z' fill='black'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.rkr-value-img-wrapper:hover img {
  transform: scale(1.05);
}

.rkr-value-cards-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rkr-value-card-v2 {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rkr-value-card-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background-color: #da3e1e;
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rkr-value-card-v2:hover {
  box-shadow: 0 15px 30px rgba(218, 62, 30, 0.08);
  transform: translateY(-5px);
}

.rkr-value-card-v2:hover::before {
  opacity: 1;
}

.rkr-value-icon-wrap {
  width: 3rem;
  height: 3rem;
  background-color: rgba(218, 62, 30, 0.1);
  color: #da3e1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.rkr-value-text-wrap {
  flex: 1;
}

.rkr-value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.rkr-value-desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* RKR Pelayanan Section */
.rkr-pelayanan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .rkr-pelayanan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rkr-service-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.rkr-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(218, 62, 30, 0.1);
  border-color: #da3e1e;
}

.rkr-service-num {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #da3e1e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.rkr-service-content h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #da3e1e;
  margin-bottom: 0.5rem;
}

.rkr-service-content p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Polished Blog Section */
.blog-section {
  background-color: #ffffff !important;
  padding: 6rem 0 !important;
}

.blog-modern-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2rem !important;
}

@media (min-width: 768px) {
  .blog-modern-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.blog-modern-card {
  display: flex !important;
  flex-direction: row !important;
  gap: 1.5rem !important;
  align-items: center !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 1.5rem !important;
  padding: 1.25rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.blog-modern-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 25px -5px rgba(218, 62, 30, 0.1) !important;
  border-color: rgba(218, 62, 30, 0.2) !important;
}

.blog-modern-media {
  width: 130px !important;
  height: 130px !important;
  border-radius: 1rem !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

.blog-modern-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.blog-modern-content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 0 !important;
}

.blog-modern-category {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #da3e1e !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 0.5rem !important;
}

.blog-modern-title {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #111827 !important;
  line-height: 1.3 !important;
  margin-bottom: 0.5rem !important;
}

.blog-modern-title a {
  color: inherit !important;
  text-decoration: none !important;
}

.blog-modern-title a:hover {
  color: #da3e1e !important;
}

.blog-modern-excerpt {
  font-size: 0.875rem !important;
  color: #4b5563 !important;
  line-height: 1.5 !important;
}

@media (max-width: 576px) {
  .blog-modern-card {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .blog-modern-media {
    width: 100% !important;
    height: 180px !important;
  }
}

/* Polished Showroom & Map Section */
.showroom-section {
  background-color: #f9fafb !important;
  padding: 6rem 0 !important;
}

.showroom-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 3rem !important;
  align-items: stretch !important;
}

@media (min-width: 992px) {
  .showroom-grid {
    grid-template-columns: 1fr 1.1fr !important;
  }
}

.showroom-info {
  background: #ffffff !important;
  padding: 3rem !important;
  border-radius: 2rem !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03) !important;
  border: 1px solid rgba(0, 0, 0, 0.03) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.showroom-info h3 {
  font-size: 1.75rem !important;
  font-weight: 900 !important;
  color: #111827 !important;
  margin-bottom: 1.25rem !important;
}

.showroom-info p {
  color: #4b5563 !important;
  line-height: 1.7 !important;
  margin-bottom: 2rem !important;
  font-size: 1rem !important;
}

.showroom-hours-box {
  background-color: #f9fafb !important;
  padding: 1rem 1.5rem !important;
  border-radius: 1rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 1rem !important;
  width: fit-content !important;
  border: 1px solid rgba(0, 0, 0, 0.02) !important;
}

.showroom-hours-box i {
  font-size: 1.5rem !important;
  color: #da3e1e !important;
}

.showroom-hours-box span {
  font-weight: 700 !important;
  color: #111827 !important;
  font-size: 0.95rem !important;
}

.showroom-map {
  border-radius: 2rem !important;
  overflow: hidden !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
  border: 6px solid #ffffff !important;
  outline: 1px solid rgba(0, 0, 0, 0.05) !important;
  min-height: 400px !important;
}

.showroom-map iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 400px !important;
  border: 0 !important;
  display: block !important;
}

/* Red accents color palette update for existing layout parts */
:root {
  --primary: #da3e1e;
  --primary-rgb: 218, 62, 30;
  --accent: #bf3418;
  --accent-light: #fbe6e2;
}

.gallery-tab-btn.active {
  background-color: #da3e1e !important;
  border-color: #da3e1e !important;
}

.gallery-item-overlay {
  background: rgba(218, 62, 30, 0.8) !important;
}

.promo-banner {
  background-color: #da3e1e !important;
}

.promo-btn {
  color: #da3e1e !important;
}

.promo-btn:hover {
  background-color: #fbe6e2 !important;
  color: #da3e1e !important;
}

.floating-wa-btn {
  background-color: #25d366 !important;
}

.floating-wa-btn:hover {
  background-color: #128c7e !important;
}

/* =============================================
   TRANSPARENT HEADER (Homepage only)
   ============================================= */
.home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  z-index: 200;
}

/* When scrolled — reveal solid header */
.home .site-header.rkr-scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

/* Push page content down by header height on homepage */
.home .site-main {
  padding-top: 0;
}

/* Nav links get a white pill in transparent state */
.home .site-header:not(.rkr-scrolled) .desktop-menu a {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  color: var(--dark);
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}

.home .site-header:not(.rkr-scrolled) .desktop-menu a:hover,
.home .site-header:not(.rkr-scrolled) .desktop-menu li.current-menu-item>a {
  background: rgba(218, 62, 30, 0.12);
  color: var(--primary);
}

/* Logo in transparent mode stays readable */
.home .site-header:not(.rkr-scrolled) .logo-text-rkrteknik {
  color: var(--dark);
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
}

/* CTA button in transparent mode */
.home .site-header:not(.rkr-scrolled) .btn-cta {
  background: var(--primary) !important;
  box-shadow: 0 4px 14px rgba(218, 62, 30, 0.4);
}

/* Mobile toggle in transparent mode */
.home .site-header:not(.rkr-scrolled) .mobile-menu-toggle {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
}

/* Admin bar fix for sticky/fixed header */
.admin-bar .site-header,
.admin-bar .home .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {

  .admin-bar .site-header,
  .admin-bar .home .site-header {
    top: 46px;
  }
}

/* =============================================
   CTA FADE TEXT ANIMATION
   ============================================= */
.rkr-fade-text-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  color: #fff;
  min-width: 180px;
}

.rkr-fade-slide {
  white-space: nowrap;
  transition: opacity 0.8s ease-in-out;
}

.rkr-fade-1 {
  display: inline;
}

.rkr-fade-2 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

@keyframes rkrFadeIn {

  0%,
  40% {
    opacity: 1;
  }

  50%,
  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes rkrFadeOut {

  0%,
  40% {
    opacity: 0;
  }

  50%,
  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.rkr-fade-text-wrapper .rkr-fade-1 {
  animation: rkrFadeIn 6s infinite ease-in-out;
}

.rkr-fade-text-wrapper .rkr-fade-2 {
  animation: rkrFadeOut 6s infinite ease-in-out;
}

/* =============================================
   PAGE HERO BANNER
   ============================================= */
.page-hero {
  background-color: var(--primary);
  padding: 7rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--accent);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.page-hero-title {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin: 0 0 0.75rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.page-hero-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 2;
}

.page-hero-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.page-hero-breadcrumb a:hover {
  opacity: 0.7;
}

.page-hero-breadcrumb i {
  font-size: 0.6rem;
}

.page-hero-breadcrumb .current {
  font-weight: 600;
  color: #ffffff;
}

/* =============================================
   PAGE CONTENT TYPOGRAPHY (Global)
   ============================================= */
.page-content { font-size: 1rem; line-height: 1.8; color: var(--gray, #475569); }
.page-content p { margin-bottom: 1.5rem; }
.page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 { margin-top: 2.5rem; margin-bottom: 1rem; color: var(--dark, #1e293b); font-weight: 700; line-height: 1.3; }
.page-content h2 { font-size: 1.75rem; }
.page-content h3 { font-size: 1.5rem; }
.page-content h4 { font-size: 1.25rem; }
.page-content ul, .page-content ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.page-content ul { list-style-type: disc; }
.page-content ol { list-style-type: decimal; }
.page-content li { margin-bottom: 0.5rem; }
.page-content img { max-width: 100%; height: auto; border-radius: 0.75rem; margin-top: 1.5rem; margin-bottom: 1.5rem; }
.page-content blockquote { border-left: 4px solid var(--accent, #0d9488); padding-left: 1rem; margin-left: 0; margin-bottom: 1.5rem; font-style: italic; color: #64748b; }

/* =============================================
   MOBILE FIXES & RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 767px) {
  .rkr-hero-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0) 100%);
  }

  .rkr-hero-pill-cta {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    width: 100%;
    max-width: 340px;
    border-width: 2px;
    margin-top: 1.5rem;
  }

  .rkr-pill-left {
    border-radius: 14px 14px 0 0;
    align-items: center;
    padding: 1rem;
    text-align: center;
  }

  .rkr-pill-right {
    border-radius: 0 0 14px 14px;
    justify-content: center;
    padding: 1rem;
    border-top: 2px solid var(--primary);
  }

  .rkr-hero-visual-split {
    height: 360px;
    min-height: 360px;
    margin-top: 1rem;
    max-width: 100%;
    filter: none !important;
  }

  .rkr-value-visual-v2 {
    filter: none !important;
  }

  .rkr-frame-1 {
    width: 240px;
    height: 275px;
    top: 0;
    right: 0;
  }

  .rkr-frame-2 {
    width: 170px;
    height: 196px;
    bottom: 0;
    left: 0;
  }

  .rkr-section {
    padding: 3rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
}

/* =============================================
   LAYANAN SERVICE SECTION
   ============================================= */
.rkr-spesialis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.rkr-spesialis-card {
  background: var(--primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.rkr-spesialis-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.rkr-spesialis-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--accent);
}

.rkr-spesialis-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.rkr-spesialis-card:hover .rkr-spesialis-icon {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.1) rotate(5deg);
}

.rkr-spesialis-title {
  margin: 0;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.3;
}