﻿@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;700&display=swap");

:root {
  --primary: #fb3300;
  --footer1: #282828;
  --footer2: #040707;
  --white: #fff;
  --dark: #181818;
  --font-main: "Archivo", Helvetica, Arial, Lucida, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.main-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo h2 {
  color: var(--primary);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary);
}

.nav-list a:hover::after {
  width: 100%;
}

/* Submenu Dropdown Styles */
.nav-list li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-list li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-list .sub-menu li {
  display: block;
}

.nav-list .sub-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s;
}

.nav-list .sub-menu a::after {
  display: none;
}

.nav-list .sub-menu a:hover {
  background: rgba(251, 51, 0, 0.05);
  color: var(--primary);
  padding-left: 2rem;
}

/* Submenu indicator arrow */
.nav-list li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-list .dropdown-icon {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-cta-btn {
  padding: 0.5rem 1.2rem !important;
  font-size: 0.9rem;
  white-space: nowrap;
}

.header-cta-menu-item {
  display: flex;
  align-items: center;
}

.header-cta-menu-item a {
  font-weight: normal;
  color: var(--white) !important;
}

.header-cta-menu-item a:hover {
  color: var(--white) !important;
}

.header-cta-menu-item a::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fff 0%, #ffe8e0 100%);
  padding: 5rem 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: #c62800;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(251, 51, 0, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(251, 51, 0, 0.3);
}

.btn-small {
  padding: 0.5rem 1.2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-small:hover {
  background: #c62800;
  transform: scale(1.05);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero Slider Section */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--primary);
}

.slider-container {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
  user-select: none;
}

.slider-container.dragging {
  cursor: grabbing;
  transition: none;
}

.hero-slide {
  min-width: 100%;
  position: relative;
  display: block;
}

/* .hero-slide:first-child {
  position: relative;
} */

/* .hero-slide.active {
  opacity: 1;
  visibility: visible;
} */

.hero-slide-bg {
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-slide-bg picture {
  width: 100%;
  display: block;
  line-height: 0;
}

.hero-slide-bg img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-slide .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-slide .hero-content {
  max-width: 700px;
  color: var(--white);
  animation: slideInUp 1s ease-out;
}

.hero-slide.active .hero-content {
  animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 2rem;
}

.slider-next {
  right: 2rem;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.dot.active {
  background: var(--white);
  width: 40px;
  border-radius: 6px;
}

.hero-image {
  text-align: center;
  font-size: 15rem;
  color: var(--primary);
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

/* Trusted Brands Section */
.trusted-brands {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
}

.trusted-brands h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 3rem;
  font-size: 2rem;
}

.brands-slider {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.brands-slider:active {
  cursor: grabbing;
}

.brands-track {
  display: flex;
  gap: 30px;
  will-change: transform;
}

.brand-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  width: 120px;
}

.brand-item:hover {
  opacity: 1;
}

.brand-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  /* filter: grayscale(100%);
  transition: filter 0.3s ease; */
  pointer-events: none; /* Added */
  user-select: none; /* Added */
  -webkit-user-drag: none; /* Added */
}

.brand-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}

/* .brand-item:hover img {
  filter: grayscale(0%);
} */

.brand-item:hover span {
  opacity: 1;
  color: var(--primary);
}

/* @keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} */

/* Catalog Preview */
.catalog-preview {
  padding: 5rem 0;
  background: #f9f9f9;
}

.catalog-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 3rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.catalog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.catalog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(251, 51, 0, 0.15);
}

.card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-overlay {
  display: none;
}

.card-icon {
  display: none;
}

.card-content {
  padding: 1rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.catalog-card p {
  color: #666;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
  margin-top: auto;
  font-size: 0.8rem;
}

.card-link:hover {
  gap: 1rem;
}

/* Blog Preview Section */
.blog-preview {
  padding: 5rem 0;
  background: var(--white);
}

.blog-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.blog-preview-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(251, 51, 0, 0.15);
}

.blog-preview-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-preview-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-preview-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #999;
}

.blog-preview-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-preview-meta i {
  color: var(--primary);
}

.blog-preview-content h3 {
  color: var(--dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-preview-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-preview-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.blog-preview-link:hover {
  gap: 1rem;
}

.blog-preview-cta {
  text-align: center;
}

.card-link:hover {
  gap: 1rem;
}

.catalog-preview-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Achievements */
.achievements {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #c62800 100%);
  color: var(--white);
  border-radius: 30px;
  box-shadow: 0 10px 25px rgb(42 13 0 / 26%);
}

.achievements h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #ccc;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: var(--light);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 33.333%;
  max-width: 280px;
  min-width: 220px;
  margin-bottom: 0;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 78, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-icon i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon i {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 600;
  margin: 0;
}

/* Flexbox: Center last row if < 4 items */
.features-grid {
  /* already centered by justify-content: center */
}

@media (max-width: 1024px) {
  .features-grid {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .features-grid {
    gap: 1.5rem;
  }
  .feature-item {
    flex: 1 1 45%;
    max-width: 48%;
    min-width: 180px;
  }
}

@media (max-width: 600px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .feature-item {
    max-width: 100%;
    min-width: 0;
  }
}

/* Contact CTA */
.contact-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #c62800 100%);
  color: var(--white);
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content > p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.info-item i {
  font-size: 2.5rem;
  opacity: 0.9;
}

.info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.info-item p {
  margin: 0.3rem 0;
}

.info-item a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.info-item a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.info-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Contact Form Section */
.contact-form-section {
  padding: 5rem 0 0 0;
  background: var(--white);
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 1rem;
}

.contact-form-image {
  width: 100%;
  align-self: end;
}

.contact-form-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.contact-form-content {
  padding-bottom: 1rem;
}

.contact-form-content h2 {
  font-size: 2.5rem;
  color: var(--dark);
  text-align: center;
}

.contact-form-content h2 .text-primary {
  color: var(--primary);
}

.form-divider {
  display: block;
  width: 100%;
  height: auto;
}

.form-subtitle {
  color: #666;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 0;
}

.contact-form .form-group {
  margin-bottom: 0.5rem;
}

.contact-form .form-row .form-group {
  margin-bottom: 0.5rem;
}

.contact-form .form-group label {
  display: block;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 0.5rem 0.9rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: all 0.3s;
  background: #fafafa;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(251, 51, 0, 0.1);
}

.contact-form .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Stylized File Input */
.file-input-wrapper {
  position: relative;
  overflow: hidden;
}

.contact-form .form-group input[type="file"].file-input {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 2px dashed #ddd;
  border-radius: 8px;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.file-label:hover {
  border-color: var(--primary);
  background: rgba(251, 51, 0, 0.05);
}

.file-label i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.file-label .file-text {
  color: #666;
  font-size: 0.95rem;
}

.contact-form .form-group input[type="file"]:focus + .file-label {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(251, 51, 0, 0.1);
}

.file-info {
  display: block;
  margin-top: 0.1rem;
  color: #666;
  font-size: 0.85rem;
}

/* Stylized Submit Button */
.contact-form .btn-submit {
  margin-top: 1rem;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.contact-form .btn-submit i {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.contact-form .btn-submit:hover i {
  transform: translateX(5px);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #c62800 100%);
  color: var(--white);
  padding: 1rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* Catalog Filter */
.catalog-filter,
.portofolio-filter {
  padding: 2rem 0;
  background: #f9f9f9;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.7rem 1.5rem;
  background: var(--white);
  border: 2px solid #ddd;
  border-radius: 25px;
  color: var(--dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Katalogs Section */
.katalogs-section {
  padding: 4rem 0;
  background: #f9f9f9;
}

.katalogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.katalog-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.katalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(251, 51, 0, 0.15);
}

.katalog-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
}

.katalog-image-overlay {
  display: none;
}

.katalog-card h3 {
  color: var(--dark);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.katalog-card > p {
  color: #666;
  margin-bottom: 1rem;
}

.katalog-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.katalog-features span {
  color: #555;
  font-size: 0.9rem;
}

.katalog-features i {
  color: var(--primary);
  margin-right: 0.3rem;
}

.katalog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

/* Catalog CTA */
.catalog-cta,
.profil-cta,
.portofolio-cta {
  padding: 4rem 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.catalog-cta h2,
.profil-cta h2,
.portofolio-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.catalog-cta p,
.profil-cta p,
.portofolio-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Portofolio Detail Page */
.portofolio-detail-header {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.portofolio-detail-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.portofolio-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.portofolio-detail-intro h1 {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.portofolio-tagline {
  font-size: 1.2rem;
  color: #666;
}

.portofolio-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.meta-item i {
  font-size: 2rem;
  color: var(--primary);
}

.meta-item strong {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.2rem;
}

.meta-item span {
  color: var(--dark);
  font-weight: 500;
}

.portofolio-gallery-section {
  padding: 4rem 0;
}

.portofolio-main-image {
  width: 100%;
  height: 750px;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.portofolio-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.portofolio-thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.portofolio-thumb {
  height: 200px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.portofolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.portofolio-thumb:hover img {
  transform: scale(1.05);
}

.portofolio-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portofolio-content-section {
  padding: 4rem 0;
  background: #f9f9f9;
}

.portofolio-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.portofolio-main-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.portofolio-main-content h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.portofolio-main-content h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin: 2rem 0 1rem;
}

.portofolio-main-content p {
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

.portofolio-main-content ul {
  list-style: none;
  padding-left: 0;
}

.portofolio-main-content ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #666;
}

.portofolio-main-content ul li::before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.solution-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.solution-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.solution-item h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.solution-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.testimonial-box {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--primary);
  margin: 2rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-box i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.testimonial-box p {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.testimonial-author span {
  color: #999;
  font-size: 0.9rem;
}

.portofolio-sidebar .sidebar-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-card h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.project-details-list {
  list-style: none;
  padding: 0;
}

.project-details-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.project-details-list li:last-child {
  border-bottom: none;
}

.project-details-list i {
  font-size: 1.5rem;
  color: var(--primary);
}

.project-details-list strong {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.2rem;
}

.project-details-list span {
  color: var(--dark);
  font-weight: 500;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  width: 45px;
  height: 45px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, #c62800 100%);
  background-size: cover !important;
  background-position: center !important;
  /* color: white; */
}

.cta-card h4 {
  /* color: white; */
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cta-card p {
  /* color: rgba(255, 255, 255, 0.9); */
  margin-bottom: 1.5rem;
}

/* About Section */
.about-content {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-image {
  text-align: center;
  font-size: 15rem;
  color: var(--primary);
  padding: 2rem;
  /* opacity: 0.2; */
}

.about-image img {
  width: 100%;
  height: auto;
  /* border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
}

/* Mission & Vision */
.mission-vision {
  padding: 4rem 0;
  background: #f9f9f9;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.mv-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mv-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.mv-card h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.mv-card p {
  color: #666;
  line-height: 1.8;
}

/* Values Section */
.values-section {
  padding: 5rem 0;
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 3rem;
}

.values-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.value-card {
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s;
  width: 30%;
}

@media (max-width: 1024px) {
  .value-card {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .value-card {
    width: 100%;
  }
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-card h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.value-card p {
  color: #666;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: #f9f9f9;
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(251, 51, 0, 0.15);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #c62800 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
}

.team-card h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.team-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all 0.3s;
}

.team-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Blog Section */
.blog-section {
  padding: 4rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(251, 51, 0, 0.15);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.blog-card:hover .blog-image-overlay {
  background: linear-gradient(
    135deg,
    rgba(251, 51, 0, 0.85) 0%,
    rgba(4, 7, 7, 0.7) 100%
  );
}

.blog-image-overlay i {
  display: none;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: #999;
  font-size: 0.9rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-content > p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.read-more:hover {
  gap: 1rem;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.page-link {
  padding: 0.7rem 1.2rem;
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.page-link:hover,
.page-link.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Newsletter */
.newsletter-section {
  padding: 4rem 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.newsletter-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-message {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

.newsletter-message.success {
  background: #10b981;
  color: var(--white);
}

.newsletter-message.error {
  background: #ef4444;
  color: var(--white);
}

.newsletter-message i {
  font-size: 1.2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-family: var(--font-main);
}

.newsletter-form button {
  border: none;
  cursor: pointer;
}

/* Portofolio Section */
.portofolio-section {
  padding: 4rem 0;
}

.portofolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.portofolio-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.portofolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(251, 51, 0, 0.15);
}

.portofolio-image {
  position: relative;
  height: 250px;
  background: linear-gradient(135deg, var(--primary) 0%, #c62800 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--white);
  overflow: hidden;
  transition: transform 0.5s ease;
}

.portofolio-image:hover {
  transform: scale(1.05);
}

.portofolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(24, 24, 24, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 2rem;
  text-align: center;
}

.portofolio-card:hover .portofolio-overlay {
  opacity: 1;
}

.portofolio-overlay h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.portofolio-overlay p {
  color: #ccc;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.view-project {
  color: var(--white);
  background: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
}

.view-project:hover {
  background: #c62800;
  transform: scale(1.05);
}

.portofolio-info {
  padding: 1.5rem;
}

.portofolio-info h4 {
  color: var(--dark);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.portofolio-tag {
  display: inline-block;
  background: #f0f0f0;
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-side h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-info-side > p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #c62800 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-info-item h4 {
  color: var(--dark);
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.contact-info-item p {
  color: #666;
  line-height: 1.6;
}

.contact-social h4 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-form-side {
  background: #f9f9f9;
  padding: 3rem;
  border-radius: 15px;
}

.contact-form h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Map Section */
.map-section {
  height: 400px;
  background: #e0e0e0;
}

.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.2rem;
}

.map-placeholder i {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
  font-size: 32px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.whatsapp-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: whatsapp-pulse 2s ease-out infinite;
  z-index: 0;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* Footer */
.footer-1 {
  background: var(--footer1);
  color: var(--white);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-col h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
  color: #ccc;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-col ul li i {
  color: var(--primary);
  width: 20px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-2 {
  background: var(--footer2);
  color: #ccc;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-2 a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-2 a:hover {
  color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Image Modal/Lightbox */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}

.image-modal.active {
  opacity: 1;
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.image-modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #fff;
  color: #fff;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
  z-index: 10002;
}

.image-modal-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.image-modal-prev,
.image-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10001;
}

.image-modal-prev {
  left: 20px;
}

.image-modal-next {
  right: 20px;
}

.image-modal-prev:hover,
.image-modal-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.image-modal-counter {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 10002;
}

/* Quote Request Modal */
.quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.quote-modal.active {
  display: flex;
}

.quote-modal-content {
  background: #fff;
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.quote-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #999;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.quote-modal-close:hover {
  background: #f5f5f5;
  color: var(--primary);
  transform: rotate(90deg);
}

.quote-modal-content h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

/* 3D Viewer Modal */
.modal-3d-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.modal-3d-viewer.active {
  display: flex;
}

.modal-3d-content {
  position: relative;
  width: 95%;
  height: 95%;
  max-width: 1600px;
  max-height: 900px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 75px rgba(0, 0, 0, 0.5);
}

.modal-3d-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close-3d-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: #333;
  font-size: 1.5rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.close-3d-modal:hover {
  background: #fb3300;
  color: white;
  transform: rotate(90deg);
}

.quote-subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.quote-katalog-snippet {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #e0e0e0;
}

.snippet-image {
  width: 100px;
  height: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  flex-shrink: 0;
}

.snippet-info {
  flex: 1;
}

.snippet-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: var(--dark);
}

.snippet-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
}

.snippet-sku {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
}

.quote-form .form-group {
  margin-bottom: 1.5rem;
}

.quote-form label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.quote-form label i {
  color: var(--primary);
  margin-right: 0.5rem;
  width: 20px;
}

.quote-form select,
.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.quote-form select:focus,
.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(251, 51, 0, 0.1);
}

.quote-form textarea {
  resize: vertical;
  min-height: 80px;
}

.quote-form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.quote-form-actions .btn-primary,
.quote-form-actions .btn-whatsapp {
  width: 100%;
  margin: 0;
}

.btn-whatsapp {
  width: 100%;
  padding: 1rem;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .quote-form-actions {
    grid-template-columns: 1fr;
  }
}

/* 3D Viewer Modal */
.viewer-3d-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.viewer-3d-modal.active {
  display: flex;
}

.viewer-3d-content {
  width: 90%;
  height: 90%;
  max-width: 1400px;
  max-height: 900px;
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease;
}

.viewer-3d-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #fff;
  color: #fff;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  line-height: 1;
  padding: 0;
}

.viewer-3d-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

#viewer3DIframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-image {
    font-size: 10rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .portofolio-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .portofolio-content-grid {
    grid-template-columns: 1fr;
  }

  .solution-features {
    grid-template-columns: 1fr;
  }

  .portofolio-thumbnail-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .quote-modal-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .quote-modal-content h2 {
    font-size: 1.5rem;
  }

  .viewer-3d-content {
    width: 95%;
    height: 85%;
  }

  .viewer-3d-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .image-modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .image-modal-prev,
  .image-modal-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .image-modal-prev {
    left: 10px;
  }

  .image-modal-next {
    right: 10px;
  }

  /* Achievements & Features Responsive */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .features-grid {
    gap: 2rem;
  }
  /* 
  @media (max-width: 900px) {
    .features-grid {
      gap: 1.5rem;
    }
    .feature-item {
      flex: 1 1 45%;
      max-width: 48%;
      min-width: 180px;
    }
  }

  @media (max-width: 600px) {
    .features-grid {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    .feature-item {
      max-width: 100%;
      min-width: 0;
    }
  } */

  .achievements h2,
  .features h2 {
    font-size: 2rem;
  }

  .image-modal-counter {
    bottom: 20px;
    font-size: 0.8rem;
  }

  .image-modal-content {
    max-width: 95%;
    max-height: 95%;
  }

  .portofolio-detail-intro h1 {
    font-size: 2rem;
  }

  .portofolio-tagline {
    font-size: 1rem;
  }

  .portofolio-meta {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .portofolio-main-image {
    height: 350px;
  }

  .portofolio-thumbnail-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .nav-list {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s;
    z-index: 999;
  }

  .nav-list.active {
    left: 0;
  }

  .main-nav {
    display: block;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
    display: block;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .header-cta-menu-item {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    margin-left: 0;
    display: flex;
    justify-content: center;
  }

  .header-cta-btn {
    display: inline-block;
    text-align: center;
    padding: 0.6rem 2rem;
    font-size: 1rem;
  }

  .nav-toggle {
    display: block;
    z-index: 1000;
  }

  /* Mobile submenu styles */
  .nav-list li {
    width: 100%;
    text-align: center;
  }

  .nav-list .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0.5rem;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(251, 51, 0, 0.05);
  }

  .nav-list li.submenu-open > .sub-menu {
    max-height: 500px;
  }

  .nav-list .sub-menu li {
    width: 100%;
  }

  .nav-list .sub-menu a {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    display: block;
  }

  .nav-list .sub-menu a:hover {
    padding-left: 1rem;
    background: rgba(251, 51, 0, 0.1);
  }

  .nav-list li.submenu-open .dropdown-icon {
    transform: rotate(180deg);
  }

  /* .hero-slider {
    max-height: 700px;
    height: 500px;
  } */

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
  }

  .hero-buttons {
    gap: 0.8rem;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .hero-slide .hero-content {
    max-width: 90%;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    display: none;
  }

  .slider-prev {
    left: 1rem;
  }

  .slider-next {
    right: 1rem;
  }

  .slider-dots {
    bottom: 2rem;
  }

  .catalog-grid,
  .katalogs-grid,
  .blog-grid,
  .portofolio-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .cta-info {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  /* .hero-slide-bg img {
    width: 100%;
    height: 230px;
    object-fit: fill;
  } */

  .hero-title {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    gap: 0.6rem;
    flex-wrap: wrap;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }

  .hero-slide .hero-content {
    max-width: 95%;
  }

  .hero-title {
    font-size: 1.2rem;
  }

  .catalog-preview h2,
  .achievements h2,
  .values-section h2,
  .team-section h2 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .contact-form-side {
    padding: 2rem 1.5rem;
  }

  /* Single column for mobile */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Reset all centering for single column */
  .features-grid > .feature-item:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: stretch;
  }

  .features h2 {
    font-size: 1.8rem;
  }

  .feature-item {
    max-width: 100%;
  }

  .achievements,
  .features {
    padding: 3rem 0;
  }
}

/* Breadcrumb Section */
.breadcrumb-section {
  background: #f9f9f9;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: #999;
}

.breadcrumb span:last-child {
  color: var(--primary);
  font-weight: 600;
}

/* Katalog Detail Section */
.katalog-detail-section {
  padding: 4rem 0;
}

.katalog-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.katalog-gallery {
  position: sticky;
  top: 100px;
}

.main-katalog-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--primary) 0%, #c62800 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.main-katalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.btn-3d-viewer {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  pointer-events: auto;
}

.btn-3d-viewer:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(251, 51, 0, 0.4);
}

.btn-3d-viewer i {
  font-size: 1.1rem;
  animation: rotate3d 3s linear infinite;
}

@keyframes rotate3d {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.thumbnail-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.thumbnail {
  height: 100px;
  background: #f0f0f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
  overflow: hidden;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--primary);
  background: #ffe8e0;
}

.thumbnail.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}

.portofolio-thumb.active {
  border: 3px solid var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 51, 0, 0.3);
}

.katalog-info h1 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.katalog-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.katalog-rating i {
  color: #ffa500;
  font-size: 1.1rem;
}

.katalog-rating span {
  color: #666;
  margin-left: 0.5rem;
}

.katalog-price {
  margin-bottom: 2rem;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.unit {
  color: #666;
  font-size: 1rem;
  margin-left: 0.5rem;
}

.katalog-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.katalog-features-list {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.katalog-features-list h3 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.katalog-features-list ul {
  list-style: none;
}

.katalog-features-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #555;
  font-size: 1rem;
}

.katalog-features-list i {
  color: var(--primary);
  font-size: 1.1rem;
}

.katalog-specs {
  margin-bottom: 2rem;
}

.katalog-specs h3 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.specs-table td {
  padding: 0.8rem 0;
  color: #555;
}

.specs-table td:first-child {
  width: 40%;
}

.katalog-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.related-katalogs {
  padding: 4rem 0;
  background: #f9f9f9;
}

.related-katalogs h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

/* Blog Detail Section */
.blog-detail-section {
  padding: 3rem 0;
}

.blog-detail {
  max-width: 900px;
  margin: 0 auto;
}

.blog-detail-header {
  margin-bottom: 2rem;
}

.blog-detail-header h1 {
  font-size: 3rem;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  color: #666;
  font-size: 0.95rem;
}

.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-detail-meta i {
  color: var(--primary);
}

.blog-detail-meta a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-detail-meta a:hover {
  color: var(--primary);
}

.blog-detail-image {
  height: 500px;
  background: linear-gradient(135deg, var(--primary) 0%, #c62800 100%);
  background-position: center, center;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  color: var(--white);
  margin-bottom: 3rem;
}

.blog-detail-content {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
}

/* Blog content links styling */
.blog-detail-content a,
.blog-content a,
.blog-preview-content a,
.katalog-card h3 a,
.portofolio-info h4 a {
  color: var(--primary);
  text-decoration: underline;
  transition: all 0.3s;
}

.blog-detail-content a:hover,
.blog-content a:hover,
.blog-preview-content a:hover,
.katalog-card h3 a:hover,
.portofolio-info h4 a:hover {
  color: #d92d00;
  text-decoration: none;
}

.blog-detail-content .lead {
  font-size: 1.3rem;
  color: #555;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.blog-detail-content h2 {
  font-size: 2rem;
  color: var(--dark);
  margin: 2.5rem 0 1rem 0;
}

.blog-detail-content h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin: 2rem 0 1rem 0;
}

.blog-detail-content p {
  margin-bottom: 1.5rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-detail-content li {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.blog-detail-content blockquote {
  background: #f9f9f9;
  border-left: 5px solid var(--primary);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
}

.blog-detail-content blockquote p {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #555;
}

.blog-detail-content cite {
  display: block;
  margin-top: 1rem;
  color: #999;
  font-size: 0.95rem;
  font-style: normal;
}

.blog-detail-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
}

.blog-tags {
  margin-bottom: 2rem;
}

.blog-tags h4 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  background: #f0f0f0;
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.tag:hover {
  background: var(--primary);
  color: var(--white);
}

.blog-share {
  margin-top: 2rem;
}

.blog-share h4 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.social-share {
  display: flex;
  gap: 1rem;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.2rem;
  transition: all 0.3s;
  text-decoration: none;
}

.share-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.author-box {
  background: #f9f9f9;
  padding: 2.5rem;
  border-radius: 15px;
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.author-avatar {
  font-size: 5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.author-info h4 {
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.author-info p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.author-social {
  display: flex;
  gap: 0.8rem;
}

.author-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all 0.3s;
}

.author-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.related-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e0e0e0;
}

.related-posts h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

/* Responsive for Detail Pages */
@media (max-width: 1024px) {
  .katalog-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .katalog-gallery {
    position: static;
  }

  .main-katalog-image {
    height: 400px;
    font-size: 10rem;
  }
}

@media (max-width: 768px) {
  .blog-detail-header h1 {
    font-size: 2rem;
  }

  .blog-detail-image {
    height: 300px;
    font-size: 6rem;
  }

  .blog-detail-content {
    font-size: 1rem;
  }

  .blog-detail-content .lead {
    font-size: 1.1rem;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .main-katalog-image {
    height: 300px;
    font-size: 8rem;
  }

  .thumbnail-images {
    grid-template-columns: repeat(3, 1fr);
  }

  .btn-3d-viewer {
    bottom: 15px;
    right: 15px;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .btn-3d-viewer i {
    font-size: 1rem;
  }

  .katalog-info h1 {
    font-size: 2rem;
  }

  .current-price {
    font-size: 2rem;
  }

  .katalog-actions {
    flex-direction: column;
  }

  .katalog-actions .btn-primary,
  .katalog-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* .hero-slider {
    overflow: unset;
  } */

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: auto;
    bottom: -1rem;
    transform: translateY(0);
  }

  .slider-btn:hover {
    transform: scale(1.1);
  }

  .slider-prev {
    left: 0.5rem;
  }

  .slider-next {
    right: 0.5rem;
  }

  .slider-dots {
    bottom: 1rem;
    gap: 0.5rem;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 24px;
  }
}

/* WordPress Specific Styles */
.no-posts {
  text-align: center;
  padding: 4rem 2rem;
}

.no-posts h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.no-posts p {
  font-size: 1.1rem;
  color: #666;
}

/* Blog Content Styles */
.blog-detail-content h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.blog-detail-content h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-detail-content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.blog-detail-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: #f8f9fa;
  border-left: 4px solid var(--primary);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-detail-content blockquote p {
  margin: 0;
}

.blog-detail-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: normal;
  color: #666;
}

.blog-detail-content strong {
  font-weight: 600;
  color: var(--dark);
}

.blog-detail-content .lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

/* Pagination WordPress Classes */
.pagination .current,
.pagination .page-link.current {
  background: var(--primary);
  color: var(--white);
  pointer-events: none;
}

.pagination .dots {
  border: none;
  background: transparent;
  color: var(--dark);
  cursor: default;
}

/* Avatar Styles */
.author-avatar img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .blog-detail-content h2 {
    font-size: 1.6rem;
  }

  .blog-detail-content h3 {
    font-size: 1.3rem;
  }

  .blog-detail-content blockquote {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .blog-detail-content .lead {
    font-size: 1.1rem;
  }
}
/* Additional responsive styles for gallery images */
@media (max-width: 480px) {
  .thumbnail-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .portofolio-thumbnail-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .main-katalog-image {
    height: 250px;
  }

  .portofolio-main-image {
    height: 250px;
  }
}
