/*
Theme Name: IndoLightAudio
Theme URI: https://indolightaudio.com
Author: IndoLightAudio Team
Author URI: https://indolightaudio.com
Description: Tema WordPress profesional untuk layanan sewa sound system IndoLightAudio
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: indolightaudio
Tags: business, audio, rental, sound-system
*/

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Container Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Spacing */
section {
  padding: 80px 20px;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #764ba2;
}

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

/* Buttons */
button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* WordPress Core Alignment Classes */
.alignleft {
  float: left;
  margin-right: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Screen Reader Text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Responsive Utilities */
@media (max-width: 768px) {
  section {
    padding: 60px 15px;
  }
}

/* ============================================
   SINGLE POST STYLES
   ============================================ */

/* Hero Section */
.single-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1f7045 0%, #19b356 100%);
  color: white;
  overflow: hidden;
}

.single-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.single-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 112, 69, 0.9) 0%,
    rgba(25, 179, 86, 0.85) 100%
  );
  z-index: 2;
}

.single-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 60px 20px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
  color: white;
  font-weight: 500;
}

/* Post Meta in Hero */
.single-meta {
  margin-bottom: 20px;
}

.single-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Post Title */
.single-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 900px;
}

/* Post Info */
.single-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.single-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
}

.single-info-item svg {
  opacity: 0.9;
}

/* Article Layout */
.single-article {
  padding: 80px 20px;
  background: #f8f9fa;
}

.single-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Content */
.single-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.single-content-inner {
  padding: 60px;
}

.single-content-inner h1,
.single-content-inner h2,
.single-content-inner h3,
.single-content-inner h4,
.single-content-inner h5,
.single-content-inner h6 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a202c;
  font-weight: 700;
}

.single-content-inner h2 {
  font-size: 32px;
  padding-bottom: 12px;
  border-bottom: 3px solid #19b356;
}

.single-content-inner h3 {
  font-size: 26px;
}

.single-content-inner h4 {
  font-size: 22px;
}

.single-content-inner p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
}

.single-content-inner ul,
.single-content-inner ol {
  margin: 20px 0;
  padding-left: 30px;
  list-style: disc;
}

.single-content-inner ol {
  list-style: decimal;
}

.single-content-inner li {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.7;
  color: #4a5568;
}

.single-content-inner blockquote {
  margin: 30px 0;
  padding: 20px 30px;
  border-left: 4px solid #19b356;
  background: #f7fafc;
  font-style: italic;
  color: #2d3748;
}

.single-content-inner img {
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.single-content-inner a {
  color: #19b356;
  font-weight: 600;
  text-decoration: underline;
}

.single-content-inner a:hover {
  color: #1f7045;
}

/* Tags */
.single-tags {
  padding: 30px 60px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.single-tags svg {
  color: #718096;
  flex-shrink: 0;
}

.single-tags a {
  display: inline-block;
  padding: 6px 14px;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 14px;
  color: #4a5568;
  transition: all 0.3s ease;
}

.single-tags a:hover {
  background: #19b356;
  border-color: #19b356;
  color: white;
}

/* Share Buttons */
.single-share {
  padding: 30px 60px;
  border-top: 1px solid #e2e8f0;
}

.single-share h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #2d3748;
}

.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: white;
}

.share-facebook {
  background: #1877f2;
}

.share-facebook:hover {
  background: #145dbf;
  transform: translateY(-3px);
}

.share-twitter {
  background: #1da1f2;
}

.share-twitter:hover {
  background: #0c85d0;
  transform: translateY(-3px);
}

.share-whatsapp {
  background: #25d366;
}

.share-whatsapp:hover {
  background: #1fab4f;
  transform: translateY(-3px);
}

.share-linkedin {
  background: #0077b5;
}

.share-linkedin:hover {
  background: #005885;
  transform: translateY(-3px);
}

/* Author Bio */
.single-author {
  padding: 40px 60px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 24px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.author-avatar {
  flex-shrink: 0;
  position: relative;
}

.author-avatar::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: linear-gradient(135deg, #1f7045 0%, #19b356 50%, #10b981 100%);
  border-radius: 50%;
  z-index: 0;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.author-avatar::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: white;
  border-radius: 50%;
  z-index: 1;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.author-avatar:hover img {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(25, 179, 86, 0.3);
}

.author-info h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #718096;
  margin-bottom: 4px;
}

.author-info h3 {
  font-size: 22px;
  color: #1a202c;
  margin-bottom: 8px;
}

.author-info p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* Post Navigation */
.single-navigation {
  padding: 40px 60px;
  border-top: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.nav-previous,
.nav-next {
  display: flex;
}

.nav-previous a,
.nav-next a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: #f7fafc;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
}

.nav-previous a:hover,
.nav-next a:hover {
  background: #19b356;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 179, 86, 0.3);
}

.nav-previous a:hover .nav-label,
.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-label,
.nav-next a:hover .nav-title {
  color: white;
}

.nav-next {
  text-align: right;
}

.nav-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #718096;
  font-weight: 600;
}

.nav-title {
  font-size: 16px;
  font-weight: 700;
  color: #2d3748;
}

/* Sidebar */
.single-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a202c;
  padding-bottom: 12px;
  border-bottom: 2px solid #19b356;
}

/* Recent Posts Widget */
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
}

.recent-post-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-post-thumb:hover img {
  transform: scale(1.1);
}

.recent-post-content h4 {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 6px;
  color: #2d3748;
  transition: color 0.3s ease;
}

.recent-post-content h4:hover {
  color: #19b356;
}

.recent-post-date {
  font-size: 13px;
  color: #718096;
}

/* Category List */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f7fafc;
  border-radius: 8px;
  color: #4a5568;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-list li a:hover {
  background: #19b356;
  color: white;
  transform: translateX(5px);
}

.category-count {
  font-size: 13px;
  opacity: 0.8;
}

/* CTA Widget */
.sidebar-cta {
  background: linear-gradient(135deg, #1f7045 0%, #19b356 100%);
  color: white;
  text-align: center;
}

.sidebar-cta h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 12px;
}

.sidebar-cta p {
  margin-bottom: 20px;
  opacity: 0.95;
}

.btn-cta {
  display: inline-block;
  padding: 12px 28px;
  background: white;
  color: #19b356;
  font-weight: 700;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Related Posts */
.related-posts {
  padding: 80px 20px;
  background: white;
}

.related-posts .section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #1a202c;
}

.related-posts .highlight-text {
  color: #19b356;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .single-hero-content {
    padding: 50px 20px;
  }

  .single-title {
    font-size: 42px;
  }
}

@media (max-width: 1024px) {
  .single-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .single-sidebar {
    position: static;
    max-width: 100%;
  }

  .single-content-inner {
    padding: 40px 35px;
  }

  .single-share,
  .single-tags,
  .single-author,
  .single-navigation {
    padding: 30px 35px;
  }

  .single-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .single-hero {
    min-height: 350px;
    margin-top: 0px;
  }

  .single-hero-content {
    padding: 40px 20px;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 12px;
    flex-wrap: wrap;
  }

  .breadcrumb-current {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Title & Meta */
  .single-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .single-category {
    font-size: 13px;
    padding: 6px 12px;
  }

  .single-info {
    gap: 12px;
    font-size: 14px;
  }

  .single-info-item svg {
    width: 16px;
    height: 16px;
  }

  /* Article Spacing */
  .single-article {
    padding: 50px 15px;
  }

  .single-content {
    border-radius: 8px;
  }

  .single-content-inner {
    padding: 30px 20px;
  }

  .single-content-inner h2 {
    font-size: 26px;
    margin-top: 28px;
  }

  .single-content-inner h3 {
    font-size: 22px;
    margin-top: 24px;
  }

  .single-content-inner h4 {
    font-size: 19px;
  }

  .single-content-inner p,
  .single-content-inner li {
    font-size: 17px;
    line-height: 1.75;
  }

  .single-content-inner blockquote {
    padding: 15px 20px;
    margin: 20px 0;
  }

  .single-content-inner img {
    margin: 20px 0;
  }

  /* Tags & Share */
  .single-tags,
  .single-share {
    padding: 20px;
  }

  .single-tags {
    gap: 8px;
  }

  .single-share h4 {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .share-btn {
    width: 40px;
    height: 40px;
  }

  /* Author */
  .single-author {
    padding: 25px 20px;
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }

  .author-avatar::before {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }

  .author-avatar::after {
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
  }

  .author-avatar img {
    width: 60px;
    height: 60px;
  }

  .author-info h3 {
    font-size: 19px;
    margin-bottom: 6px;
  }

  .author-info p {
    font-size: 15px;
  }

  /* Navigation */
  .single-navigation {
    padding: 25px 20px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nav-previous a,
  .nav-next a {
    padding: 16px;
  }

  .nav-next {
    text-align: left;
  }

  .nav-label {
    font-size: 13px;
  }

  .nav-title {
    font-size: 16px;
  }

  /* Sidebar */
  .sidebar-widget {
    padding: 20px;
    margin-bottom: 20px;
  }

  .widget-title {
    font-size: 19px;
    margin-bottom: 16px;
  }

  .recent-post-thumb {
    width: 70px;
    height: 70px;
  }

  .recent-post-content h4 {
    font-size: 15px;
  }

  /* Related Posts */
  .related-posts {
    padding: 50px 15px;
  }

  .related-posts .section-title {
    font-size: 30px;
    margin-bottom: 35px;
  }
}

@media (max-width: 480px) {
  .single-hero {
    min-height: 300px;
  }

  .single-hero-content {
    padding: 30px 15px;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 11px;
    gap: 6px;
  }

  /* Title */
  .single-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .single-category {
    font-size: 12px;
    padding: 5px 10px;
  }

  /* Info items stack */
  .single-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .single-info-item {
    font-size: 13px;
  }

  /* Article */
  .single-article {
    padding: 40px 10px;
  }

  .single-content {
    border-radius: 6px;
  }

  .single-content-inner {
    padding: 25px 16px;
  }

  .single-content-inner h2 {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .single-content-inner h3 {
    font-size: 20px;
    margin-top: 20px;
  }

  .single-content-inner h4 {
    font-size: 18px;
  }

  .single-content-inner p,
  .single-content-inner li {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .single-content-inner ul,
  .single-content-inner ol {
    padding-left: 20px;
    margin: 16px 0;
  }

  .single-content-inner blockquote {
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 16px;
  }

  .single-content-inner img {
    margin: 16px 0;
  }

  /* Tags */
  .single-tags {
    padding: 16px;
    gap: 6px;
  }

  .single-tags svg {
    display: none;
  }

  .single-tags a {
    font-size: 13px;
    padding: 5px 10px;
  }

  /* Share */
  .single-share {
    padding: 20px 16px;
  }

  .single-share h4 {
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
  }

  .share-buttons {
    justify-content: center;
    gap: 10px;
  }

  .share-btn {
    width: 42px;
    height: 42px;
  }

  .share-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Author */
  .single-author {
    padding: 20px 16px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .author-avatar {
    margin: 0 auto;
  }

  .author-avatar::before {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }

  .author-avatar::after {
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
  }

  .author-avatar img {
    width: 70px;
    height: 70px;
  }

  .author-info h4 {
    font-size: 12px;
  }

  .author-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .author-info p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Navigation */
  .single-navigation {
    padding: 20px 16px;
    gap: 12px;
  }

  .nav-previous a,
  .nav-next a {
    padding: 14px;
  }

  .nav-label {
    font-size: 12px;
  }

  .nav-title {
    font-size: 15px;
    line-height: 1.3;
  }

  /* Sidebar */
  .sidebar-widget {
    padding: 18px;
    margin-bottom: 16px;
    border-radius: 8px;
  }

  .widget-title {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .recent-posts {
    gap: 16px;
  }

  .recent-post-item {
    gap: 12px;
  }

  .recent-post-thumb {
    width: 65px;
    height: 65px;
  }

  .recent-post-content h4 {
    font-size: 14px;
    line-height: 1.3;
  }

  .recent-post-date {
    font-size: 12px;
  }

  .category-list {
    gap: 10px;
  }

  .category-list li a {
    padding: 10px 14px;
    font-size: 15px;
  }

  .category-count {
    font-size: 13px;
  }

  .sidebar-cta h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .sidebar-cta p {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .btn-cta {
    padding: 10px 24px;
    font-size: 15px;
  }

  /* Related Posts */
  .related-posts {
    padding: 40px 10px;
  }

  .related-posts .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .related-posts .artikel-grid {
    gap: 20px;
  }

  .artikel-card {
    margin-bottom: 0;
  }
}

@media (max-width: 360px) {
  .single-title {
    font-size: 23px;
  }

  .single-content-inner {
    padding: 20px 14px;
  }

  .single-content-inner h2 {
    font-size: 22px;
  }

  .single-content-inner h3 {
    font-size: 19px;
  }

  .single-content-inner p,
  .single-content-inner li {
    font-size: 15px;
  }

  .share-btn {
    width: 38px;
    height: 38px;
  }
}

/* ============================================
   FULL GALLERY PAGE STYLES
   ============================================ */

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1f7045 0%, #19b356 100%);
  color: white;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231f7045" width="1200" height="600"/><circle fill="%2319b356" opacity="0.1" cx="200" cy="100" r="300"/><circle fill="%2310b981" opacity="0.1" cx="1000" cy="500" r="400"/></svg>');
  background-size: cover;
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 20px;
  text-align: center;
}

.page-subtitle {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.page-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-intro {
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Full Gallery Section */
.full-galery-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.full-galery-section .galery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.full-galery-section .galery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}

.full-galery-section .galery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.galery-image-wrapper {
  position: relative;
  padding-bottom: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
  background: #e2e8f0;
}

.galery-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Hidden Items - Desktop only */
.full-galery-section .galery-item.hidden-item {
  display: none;
}

/* Ensure all gallery items are visible by default */
.full-galery-section .galery-item {
  opacity: 1;
  visibility: visible;
}

/* Load More Section */
.galery-loadmore {
  text-align: center;
  padding: 20px 0;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #1f7045 0%, #19b356 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(25, 179, 86, 0.3);
  min-width: 200px;
}

.btn-load-more:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(25, 179, 86, 0.4);
}

.btn-load-more:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-loader svg {
  animation: spin 1s linear infinite;
}

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

/* Responsive Gallery Page */
@media (max-width: 1024px) {
  .full-galery-section .galery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 350px;
  }

  .page-hero-content {
    padding: 60px 20px;
  }

  .page-title {
    font-size: 36px;
  }

  .page-intro {
    font-size: 16px;
  }

  .full-galery-section {
    padding: 60px 15px;
  }

  .full-galery-section .galery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
  }

  /* Show all items on mobile/tablet */
  .full-galery-section .galery-item.hidden-item {
    display: block !important;
  }

  .btn-load-more {
    padding: 14px 32px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 300px;
  }

  .page-hero-content {
    padding: 50px 15px;
  }

  .page-subtitle {
    font-size: 12px;
    padding: 6px 16px;
  }

  .page-title {
    font-size: 28px;
  }

  .page-intro {
    font-size: 15px;
  }

  .full-galery-section {
    padding: 50px 10px;
  }

  .full-galery-section .galery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  /* Show all items on mobile */
  .full-galery-section .galery-item.hidden-item {
    display: block !important;
  }

  .galery-image-wrapper {
    padding-bottom: 66%; /* 3:2 Aspect Ratio for mobile */
  }

  .btn-load-more {
    width: 100%;
    max-width: 300px;
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .page-title {
    font-size: 24px;
  }
}

/* ==========================================================================
   FULL ARTIKEL PAGE STYLES
   ========================================================================== */

/* Full Artikel Section */
.full-artikel-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.full-artikel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Artikel Meta with Author */
.artikel-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.artikel-date,
.artikel-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}

.artikel-date svg,
.artikel-author svg {
  flex-shrink: 0;
}

/* Artikel Title Link */
.artikel-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.artikel-title a:hover {
  color: #19b356;
}

/* Artikel Pagination */
.artikel-pagination {
  margin-top: 60px;
  text-align: center;
}

.artikel-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.artikel-pagination .page-numbers li {
  display: inline-block;
}

.artikel-pagination .page-numbers a,
.artikel-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0 16px;
  background: white;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.artikel-pagination .page-numbers a:hover {
  background: #19b356;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(25, 179, 86, 0.3);
}

.artikel-pagination .page-numbers .current {
  background: linear-gradient(135deg, #1f7045 0%, #19b356 100%);
  color: white;
  border-color: #19b356;
  box-shadow: 0 4px 15px rgba(25, 179, 86, 0.3);
}

.artikel-pagination .page-numbers .prev,
.artikel-pagination .page-numbers .next {
  padding: 0 20px;
  font-size: 14px;
}

.artikel-pagination .page-numbers .dots {
  background: transparent;
  color: #999;
  border: none;
  cursor: default;
}

.artikel-pagination .page-numbers .dots:hover {
  background: transparent;
  color: #999;
  transform: none;
  box-shadow: none;
}

/* No Artikel Fallback */
.no-artikel {
  text-align: center;
  padding: 80px 20px;
}

.no-artikel-icon {
  margin-bottom: 30px;
}

.no-artikel-icon svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

.no-artikel h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 16px;
  font-weight: 700;
}

.no-artikel p {
  font-size: 16px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Responsive Artikel Page */
@media (max-width: 1024px) {
  .full-artikel-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .full-artikel-section {
    padding: 60px 15px;
  }

  .full-artikel-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
  }

  .artikel-pagination {
    margin-top: 50px;
  }

  .artikel-pagination .page-numbers a,
  .artikel-pagination .page-numbers span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .no-artikel {
    padding: 60px 20px;
  }

  .no-artikel h2 {
    font-size: 24px;
  }

  .no-artikel p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .full-artikel-section {
    padding: 50px 10px;
  }

  .full-artikel-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .artikel-meta {
    gap: 15px;
  }

  .artikel-date,
  .artikel-author {
    font-size: 13px;
  }

  .artikel-pagination {
    margin-top: 40px;
  }

  .artikel-pagination .page-numbers {
    gap: 8px;
  }

  .artikel-pagination .page-numbers a,
  .artikel-pagination .page-numbers span {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }

  .artikel-pagination .page-numbers .prev,
  .artikel-pagination .page-numbers .next {
    padding: 0 12px;
    font-size: 13px;
  }

  .no-artikel {
    padding: 50px 15px;
  }

  .no-artikel-icon svg {
    width: 60px;
    height: 60px;
  }

  .no-artikel h2 {
    font-size: 20px;
  }

  .no-artikel p {
    font-size: 14px;
  }
}

/* ==========================================================================
   TENTANG KAMI PAGE STYLES
   ========================================================================== */

/* About Intro Section */
.about-intro-section {
  padding: 80px 20px;
  background: white;
}

.about-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-intro-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #19b356;
  margin-bottom: 30px;
}

.about-intro-text {
  text-align: left;
}

.about-intro-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.about-intro-text p:last-child {
  margin-bottom: 0;
}

/* Visi Misi Section */
.visi-misi-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.visi-misi-card {
  background: white;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.visi-misi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.vm-icon {
  margin-bottom: 25px;
}

.vm-icon svg {
  width: 60px;
  height: 60px;
}

.vm-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.vm-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.vm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
  padding-left: 30px;
  position: relative;
}

.vm-list li:last-child {
  margin-bottom: 0;
}

.vm-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #19b356;
  font-weight: 700;
  font-size: 18px;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 20px;
  background: white;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-choose-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-choose-card:hover {
  background: white;
  border-color: #19b356;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(25, 179, 86, 0.15);
}

.why-icon {
  margin-bottom: 20px;
}

.why-icon svg {
  width: 50px;
  height: 50px;
}

.why-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.why-text {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* About CTA Section */
.about-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1f7045 0%, #19b356 100%);
  color: white;
}

.about-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-cta-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.95;
}

.about-contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-text {
  font-size: 16px;
  line-height: 1.7;
  color: white;
}

.contact-text a {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.contact-text a:hover {
  border-bottom-color: white;
}

.btn-cta-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 45px;
  background: white;
  color: #19b356;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-about svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-cta-about:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #f0f0f0;
}

/* Responsive Tentang Kami Page */
@media (max-width: 1024px) {
  .visi-misi-grid {
    gap: 30px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .about-intro-section {
    padding: 60px 15px;
  }

  .about-intro-title {
    font-size: 28px;
  }

  .about-intro-subtitle {
    font-size: 18px;
  }

  .about-intro-text p {
    font-size: 16px;
  }

  .visi-misi-section {
    padding: 60px 15px;
  }

  .visi-misi-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .visi-misi-card {
    padding: 40px 30px;
  }

  .vm-title {
    font-size: 24px;
  }

  .vm-text,
  .vm-list li {
    font-size: 15px;
  }

  .why-choose-section {
    padding: 60px 15px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-cta-section {
    padding: 60px 15px;
  }

  .about-cta-title {
    font-size: 28px;
  }

  .about-cta-text {
    font-size: 16px;
  }

  .contact-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-intro-section {
    padding: 50px 15px;
  }

  .about-intro-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .about-intro-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .about-intro-text p {
    font-size: 15px;
  }

  .visi-misi-section {
    padding: 50px 10px;
  }

  .visi-misi-card {
    padding: 30px 20px;
  }

  .vm-icon svg {
    width: 50px;
    height: 50px;
  }

  .vm-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .vm-text,
  .vm-list li {
    font-size: 14px;
  }

  .vm-list li {
    padding-left: 25px;
    margin-bottom: 12px;
  }

  .why-choose-section {
    padding: 50px 10px;
  }

  .why-choose-card {
    padding: 30px 20px;
  }

  .why-icon svg {
    width: 45px;
    height: 45px;
  }

  .why-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .why-text {
    font-size: 14px;
  }

  .about-cta-section {
    padding: 50px 10px;
  }

  .about-cta-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .about-cta-text {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .about-contact-info {
    gap: 15px;
    margin-bottom: 30px;
  }

  .contact-item {
    padding: 15px;
  }

  .contact-item svg {
    width: 20px;
    height: 20px;
  }

  .contact-text {
    font-size: 14px;
  }

  .btn-cta-about {
    width: 100%;
    max-width: 320px;
    padding: 15px 30px;
    font-size: 15px;
    gap: 10px;
  }

  .btn-cta-about svg {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================================================
   TESTIMONI PAGE STYLES
   ========================================================================== */

/* Full Testimoni Section */
.full-testimoni-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.full-testimoni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Testimoni CTA */
.testimoni-cta {
  text-align: center;
  padding: 60px 30px;
  background: linear-gradient(135deg, #1f7045 0%, #19b356 100%);
  border-radius: 20px;
  color: white;
  box-shadow: 0 10px 40px rgba(25, 179, 86, 0.3);
}

.testimoni-cta-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.testimoni-cta-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-testimoni-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 45px;
  background: white;
  color: #19b356;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-testimoni-cta svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-testimoni-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #f0f0f0;
}

/* Responsive Testimoni Page */
@media (max-width: 1024px) {
  .full-testimoni-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .full-testimoni-section {
    padding: 60px 15px;
  }

  .full-testimoni-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
  }

  .testimoni-cta {
    padding: 50px 25px;
  }

  .testimoni-cta-title {
    font-size: 28px;
  }

  .testimoni-cta-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .full-testimoni-section {
    padding: 50px 10px;
  }

  .full-testimoni-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .testimoni-cta {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .testimoni-cta-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .testimoni-cta-text {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .btn-testimoni-cta {
    width: 100%;
    max-width: 320px;
    padding: 15px 30px;
    font-size: 15px;
    gap: 10px;
  }

  .btn-testimoni-cta svg {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================================================
   FLOATING SOCIAL BUTTONS
   ========================================================================== */

.floating-buttons {
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
}

.floating-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.floating-instagram {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
  color: white;
}

.floating-instagram:hover {
  background: linear-gradient(135deg, #5B2C8A 0%, #E91E63 50%, #F57C00 100%);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Floating buttons responsive */
@media (max-width: 768px) {
  .floating-buttons {
    right: 20px;
    bottom: 20px;
    gap: 12px;
  }

  .floating-btn {
    width: 55px;
    height: 55px;
  }

  .floating-btn svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .floating-buttons {
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .floating-btn svg {
    width: 24px;
    height: 24px;
  }
}
