/**
* Template Name: Blogy
* Template URL: https://bootstrapmade.com/blogy-bootstrap-blog-template/
* Updated: Feb 22 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #84ddf8; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1b1a18; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #fffdfd;  /* The default color of the main navmenu links */
  --nav-hover-color: hsl(191, 73%, 36%); /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1b0280; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
#map {
  height: 350px;
}
/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 12px 0;
  position: relative;
  background-color: #84ddf8; /* Fallback color */
  background-image: url('../img/bg.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 110px;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  z-index: 1;
}

.header .top-row {
  padding-bottom: 10px;
  position: relative;
  z-index: 100;
}

.header .top-row .logo {
  text-decoration: none;
}

.header .top-row .logo img {
  max-height: 100px;
  margin-right: 30px;
}

.header .top-row .logo .sitename {
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  font-family: var(--heading-font);
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header .top-row .logo span {
  color: #fff1d5;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header .social-links a {
  color: #ffffff;
  padding: 0 8px;
  display: inline-block;
  font-size: 18px;
  transition: 0.3s;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.header .social-links a:hover {
  color: #fff1d5;
}

/* Desktop header adjustments */
@media (min-width: 600px) {
  .header {
    min-height: 50px;
    background-image: url('../img/bgdeskk.jpeg');
    background-position: center bottom;
    padding: 10px 0;
  }

  .header .top-row .logo img {
    max-height: 140px;
  }

  .header .top-row .logo .sitename {
    font-size: 28px;
  }

  .header .top-row .logo span {
    font-size: 24px;
  }
}

/* Mobile header adjustments - use lighter background */
@media (max-width: 599px) {
  .header {
    background-image: url('../img/bg.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 80px;
    padding: 8px 0;
  }

  .header .top-row .logo img {
    max-height: 60px;
  }

  .header .top-row .logo .sitename {
    font-size: 20px;
  }

  .header .top-row .logo span {
    font-size: 16px;
  }
}

/* Additional mobile responsiveness */
@media (max-width: 768px) {
  .header {
    min-height: 80px;
    padding: 8px 0;
  }

  .header .top-row {
    padding-bottom: 5px;
  }

  .header .top-row .logo img {
    max-height: 60px;
  }

  .header .top-row .logo .sitename {
    font-size: 20px;
  }

  .header .top-row .logo span {
    font-size: 16px;
  }

  .header .social-links a {
    font-size: 16px;
  }

  /* Ensure search form is visible on mobile if needed */
  .header .search-form {
    display: none; /* Keep hidden as per design */
  }

  /* Ensure bottom nav is visible */
  .bottom-nav {
    display: flex;
  }

  /* Ensure main content has proper padding */
  body {
    padding-bottom: 70px;
  }

  /* Ensure sections are visible */
  section, .section {
    padding: 20px 0;
  }

  /* Ensure blog posts are responsive */
  .blog-post-card {
    margin-bottom: 20px;
  }

  .post-img-container {
    height: 180px;
  }

  /* Ensure video cards are responsive */
  .video-card {
    margin-bottom: 20px;
  }

  .video-thumbnail-container {
    height: 180px;
  }
}

@media (max-width: 200px) {
  .header .social-links {
    padding-right: 40px;
  }
}

.header .search-form {
  position: relative;
  width: 200px;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.header .search-form .form-control {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 40px 7px 15px;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
  color: #1ec5f7;
  font-size: 14px;
}

.header .search-form .form-control::placeholder {
  color: rgba(23, 21, 21, 0.7);
}

.header .search-form .form-control:focus {
  border-color: hsl(206, 93%, 33%);
  box-shadow: none;
  background: rgba(15, 29, 32, 0.654);
}

.header .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: 0;
  color: #08b9fa;
  transition: 0.3s;
}

.header .search-form button:hover {
  color: #a5cff9;
}

@media (max-width: 1200px) {
  .header .search-form {
    display: none;
  }
}

.header .nav-wrap {
  background-color: #0eb0eb;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 100;
}

.header .mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 5px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Video Play */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.video-box {
  position: relative;
  width: 80%;
  max-width: 900px;
  background: #000;
  border-radius: 8px;
}

.video-box iframe {
  width: 100%;
  height: 500px;
}

/* === CLOSE BUTTON === */
.video-box .close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #fff;
  color: #000;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .4);
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.video-thumb {
  width: 100%;
  transition: transform 0.3s;
}

.video-wrapper:hover .video-thumb {
  transform: scale(1.05);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 50%;
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    background-color: color-mix(in srgb, var(--default-color) 10%, white 15%);
    color: var(--nav-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: color 0.2s;
  }

  .mobile-nav-toggle:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 60px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 8px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero {
  padding-top: 20px;
}

.blog-hero .blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .blog-hero .blog-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog-hero .blog-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--surface-color);
  display: flex;
  flex-direction: column;
  height: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-hero .blog-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.blog-hero .blog-item:hover img {
  transform: scale(1.1);
}

.blog-hero .blog-item:hover .blog-content {
  background: var(--surface-color);
}

.blog-hero .blog-item.featured {
  grid-column: span 1;
}

@media (max-width: 991px) {
  .blog-hero .blog-item.featured {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-item.featured {
    grid-column: span 1;
  }
}

.blog-hero .blog-item.featured .post-title {
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .blog-hero .blog-item.featured .post-title {
    font-size: 0.7rem;
  }
}

.blog-hero .blog-item:not(.featured) {
  grid-column: span 1;
}

@media (max-width: 991px) {
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 1;
  }
}

.blog-hero .blog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  aspect-ratio: 16/9;
}

/* Video Wrapper */
.blog-hero .blog-item .video-wrapper {
  width: 100%;
  height: 100px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: #f5f5f5;
}

.blog-hero .blog-item .blog-content {
  flex: 1;
  padding: 0.5rem 0.5rem 0.4rem 0.5rem;
  background: var(--surface-color);
  transition: background 0.35s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.15rem;
  min-height: 60px;
}

.blog-hero .blog-item .post-category {
  font-size: 0.48rem;
  color: var(--accent-color);
  margin: 0;
  padding: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.blog-hero .blog-item .post-title {
  font-size: 0.7rem;
  font-weight: 700;
  margin: 0.2rem 0 0 0;
  padding: 0;
  color: #212529;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.blog-hero .blog-item .post-meta {
  margin: 0;
  margin-top: auto;
  font-size: 0.5rem;
  color: #666666;
}

/*--------------------------------------------------------------
# Featured Posts Section
--------------------------------------------------------------*/
.featured-posts {
  overflow: hidden;
  position: relative;
}

.featured-posts .blog-posts-slider .swiper-wrapper {
  height: auto !important;
}

.featured-posts .blog-post-item {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-item {
    height: 320px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-item {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-item {
    height: 280px;
  }
}

.featured-posts .blog-post-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-posts .blog-post-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.featured-posts .blog-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  color: var(--contrast-color);
  z-index: 2;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-content {
    padding: 12px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-content {
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content {
    padding: 15px;
  }
}

.featured-posts .blog-post-content .post-meta {
  margin-bottom: 8px;
  font-size: 12px;
}

.featured-posts .blog-post-content .post-meta span {
  display: inline-block;
  margin-right: 12px;
}

.featured-posts .blog-post-content .post-meta span i {
  margin-right: 4px;
  font-size: 12px;
}

.featured-posts .blog-post-content .post-meta span:last-child {
  margin-right: 0;
}

.featured-posts .blog-post-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content h2 {
    font-size: 22px;
  }
}

.featured-posts .blog-post-content h2 a {
  color: var(--contrast-color);
  transition: 0.3s;
}

.featured-posts .blog-post-content h2 a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }
}

.featured-posts .blog-post-content .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--contrast-color);
  font-weight: 500;
  transition: 0.3s;
}

.featured-posts .blog-post-content .read-more i {
  margin-left: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.featured-posts .blog-post-content .read-more:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Category Section Section
--------------------------------------------------------------*/
.category-section .featured-post {
  margin-bottom: 40px;
}

.category-section .featured-post .post-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.category-section .featured-post .post-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.category-section .featured-post .category-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.category-section .featured-post .post-category {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-section .featured-post .author-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.category-section .featured-post .author-meta .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.category-section .featured-post .author-meta .author-name {
  color: var(--heading-color);
  font-weight: 500;
}

.category-section .featured-post .author-meta .post-date {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-section .featured-post .author-meta .post-date:before {
  content: "-";
  margin: 0 8px;
}

.category-section .featured-post .title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

.category-section .featured-post .title a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.category-section .featured-post .title a:hover {
  color: var(--accent-color);
}

.category-section .list-post {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.category-section .list-post .post-img {
  flex: 0 0 150px;
  border-radius: 8px;
  overflow: hidden;
}

.category-section .list-post .post-img img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.category-section .list-post .post-content {
  flex: 1;
}

.category-section .list-post .post-category {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 8px;
  display: inline-block;
}

.category-section .list-post .title {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.category-section .list-post .title a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.category-section .list-post .title a:hover {
  color: var(--accent-color);
}

.category-section .list-post .post-meta {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-section .list-post .post-meta .read-time:after {
  content: "•";
  margin: 0 8px;
}

@media (max-width: 992px) {
  .category-section .featured-post .title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .category-section .list-post .post-img {
    flex: 0 0 80px;
  }

  .category-section .list-post .post-img img {
    width: 80px;
    height: 80px;
  }

  .category-section .list-post .title {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  position: relative;
  padding: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
}

.call-to-action-2 .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action-2 h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action-2 p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action-2 .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action-2 .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action-2 .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action-2 .features .feature-item span {
  font-weight: 500;
}

.call-to-action-2 .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.call-to-action-2 .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action-2 .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.call-to-action-2 .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action-2 .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action-2 .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action-2 .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action-2 .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-2 .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action-2 .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action-2 .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action-2 .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action-2 .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action-2 .decoration .circle-1,
.call-to-action-2 .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action-2 .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action-2 .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action-2 {
    padding: 2rem;
  }

  .call-to-action-2 .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action-2 .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

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

  50% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Latest Posts Section
--------------------------------------------------------------*/
.latest-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.latest-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.latest-posts .post-category {
  font-size: 16px;
  color: #212529;
  margin-bottom: 10px;
}

.latest-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
  color: #212529;
}

.latest-posts .title a {
  color: #212529;
  transition: 0.3s;
}

.latest-posts .title a:hover {
  color: var(--accent-color);
}

.latest-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.latest-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
  color: #212529;
}

.latest-posts .post-date {
  font-size: 14px;
  color: #212529;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  padding: 80px 80px 0 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 60px 60px 0 60px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    padding: 25px 15px 0 15px;
    border-radius: 0;
  }
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.call-to-action .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.call-to-action .cta-form .form-control {
  height: 50px;
  border-radius: 25px 0 0 25px;
  border: 1px solid var(--accent-color);
  padding-left: 20px;
}

.call-to-action .cta-form .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.call-to-action .cta-form .btn {
  height: 50px;
  border-radius: 0 25px 25px 0;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-to-action .cta-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
  .call-to-action .cta-form .btn {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .call-to-action .cta-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .call-to-action .cta-image {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Category Postst Section
--------------------------------------------------------------*/
.category-postst article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.category-postst .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.category-postst .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-postst .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.category-postst .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.category-postst .title a {
  color: #000000;
  transition: 0.3s;
}

.category-postst .title a:hover {
  color: var(--accent-color);
}

.category-postst .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.category-postst .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.category-postst .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/* Mobile Responsiveness for Category Posts */
@media (max-width: 768px) {
  .category-postst .post-img {
    max-height: 180px;
    margin: -20px -20px 10px -20px;
  }

  .category-postst .title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .category-postst .post-author-img {
    width: 40px;
    margin-right: 10px;
  }

  .category-postst .post-author {
    font-size: 14px;
  }

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

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
}

.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.blog-details .article-content {
  padding: 0 1rem;
}

.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author .author-box {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-author .author-box:hover {
  transform: translateY(-5px);
}

.blog-author .author-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 4px solid var(--surface-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-author .author-img:hover {
  transform: scale(1.05);
}

.blog-author .author-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  margin: 0 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.blog-author .author-social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.blog-author .author-social-links a.linkedin:hover {
  background-color: #0077b5;
}

.blog-author .author-social-links a.twitter:hover {
  background-color: #000000;
}

.blog-author .author-social-links a.github:hover {
  background-color: #333333;
}

.blog-author .author-social-links a.facebook:hover {
  background-color: #1877f2;
}

.blog-author .author-social-links a.instagram:hover {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.blog-author .author-content {
  padding-left: 1rem;
}

@media (max-width: 767.98px) {
  .blog-author .author-content {
    padding-left: 0;
    margin-top: 2rem;
    text-align: center;
  }
}

.blog-author .author-content .author-name {
  font-size: 1.75rem;
  margin: 0;
  color: var(--heading-color);
  font-weight: 700;
}

.blog-author .author-content .author-title {
  display: inline-block;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.5rem;
  font-family: var(--heading-font);
}

.blog-author .author-content .author-bio {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--default-color);
  margin: 1rem 0;
}

.blog-author .author-content .author-website {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 767.98px) {
  .blog-author .author-content .author-website {
    justify-content: center;
  }
}

.blog-author .author-content .author-website a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-author .author-content .author-website a i {
  font-size: 1.1rem;
}

.blog-author .author-content .author-website a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  transform: translateX(3px);
}

.blog-author .author-content .author-website .more-posts {
  font-weight: 500;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding-bottom: 30px;
}

.blog-comments .section-header {
  margin-bottom: 40px;
}

.blog-comments .section-header h3 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-comments .section-header h3 .comment-count {
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
  font-size: 24px;
  font-weight: 500;
}

.blog-comments .comments-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-comments .comment-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-card:hover {
  border-left-color: var(--accent-color);
  transform: translateX(5px);
}

.blog-comments .comment-card.reply {
  margin-left: 48px;
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 3%);
}

@media (min-width: 768px) {
  .blog-comments .comment-card.reply {
    margin-left: 85px;
  }
}

.blog-comments .reply-thread {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-comments .comment-header {
  margin-bottom: 20px;
}

.blog-comments .comment-header .user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-comments .comment-header .user-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comments .comment-header .user-info .meta .name {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-comments .comment-header .user-info .meta .date i {
  font-size: 13px;
}

.blog-comments .comment-content p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 20px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .blog-comments .section-header {
    margin-bottom: 30px;
  }

  .blog-comments .section-header h3 {
    font-size: 28px;
  }

  .blog-comments .section-header h3 .comment-count {
    font-size: 20px;
  }

  .blog-comments .comment-card {
    padding: 20px;
  }

  .blog-comments .comment-card.reply {
    margin-left: 35px;
  }

  .blog-comments .comment-header .user-info img {
    width: 40px;
    height: 40px;
  }

  .blog-comments .comment-header .user-info .meta .name {
    font-size: 15px;
  }

  .blog-comments .comment-header .user-info .meta .date {
    font-size: 13px;
  }

  .blog-comments .comment-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 10px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 0 auto 0 auto;
  padding-top: 30px;
}

.blog-comment-form form {
  padding: 30px;
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-comment-form .section-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.blog-comment-form .section-header h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.blog-comment-form .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin: 0;
}

.blog-comment-form .form-group {
  margin-bottom: 20px;
}

.blog-comment-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--heading-color);
  font-size: 14px;
}

.blog-comment-form .form-group .form-control {
  height: 48px;
  padding: 10px 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.blog-comment-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-comment-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .form-group .form-control:hover:not(:focus) {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .form-group textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .btn-submit {
  padding: 12px 32px;
  border-radius: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.blog-comment-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.blog-comment-form .btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 20px;
  }

  .blog-comment-form .section-header h3 {
    font-size: 24px;
  }

  .blog-comment-form .btn-submit {
    width: 100%;
    padding: 12px 20px;
  }
}

/*--------------------------------------------------------------
# Author Profile Section
--------------------------------------------------------------*/
.author-profile .author-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.author-profile .author-card .author-image {
  text-align: center;
  margin-bottom: 1.5rem;
}

.author-profile .author-card .author-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.author-profile .author-card .author-info {
  text-align: center;
}

.author-profile .author-card .author-info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.author-profile .author-card .author-info .designation {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.author-profile .author-card .author-info .author-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.author-profile .author-card .author-stats {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 1rem 0;
}

.author-profile .author-card .author-stats .stat-item h4 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: var(--accent-color);
}

.author-profile .author-card .author-stats .stat-item p {
  font-size: 0.85rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.author-profile .author-card .social-links {
  margin-top: 1.5rem;
}

.author-profile .author-card .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.author-profile .author-card .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.author-profile .author-card .social-links a i {
  font-size: 1rem;
}

.author-profile .author-content {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.author-profile .author-content .content-header {
  margin-bottom: 1.5rem;
}

.author-profile .author-content .content-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0;
}

.author-profile .author-content .content-body p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.author-profile .author-content .content-body .expertise-areas h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.author-profile .author-content .content-body .expertise-areas .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.author-profile .author-content .content-body .expertise-areas .tags span {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.author-profile .author-content .content-body .expertise-areas .tags span:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.author-profile .author-content .content-body .featured-articles h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.author-profile .author-content .content-body .featured-articles .article-card {
  background-color: var(--background-color);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.author-profile .author-content .content-body .featured-articles .article-card:hover {
  transform: translateY(-5px);
}

.author-profile .author-content .content-body .featured-articles .article-card .article-img {
  height: 200px;
  overflow: hidden;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-img:hover img {
  transform: scale(1.1);
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details {
  padding: 1.25rem;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-category {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details h5 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details h5 a:hover {
  color: var(--accent-color);
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-meta {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-meta span {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
}

.author-profile .author-content .content-body .featured-articles .article-card .article-details .post-meta span i {
  margin-right: 0.35rem;
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .author-profile .author-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .author-profile .featured-articles .article-card {
    margin-bottom: 1.5rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 10%, transparent);
  margin-bottom: 1rem;
}

.about .section-badge i {
  font-size: 1rem;
}

.about .about-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.about .about-description,
.about .section-text {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  line-height: 1.6;
}

.about .features-boxes .feature-box {
  height: 100%;
  position: relative;
}

.about .features-boxes .feature-box .icon-box {
  width: 60px;
  height: 60px;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.about .features-boxes .feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about .features-boxes .feature-box h3 a {
  color: var(--heading-color);
}

.about .features-boxes .feature-box p {
  color: color-mix(in srgb, var(--default-color) 80%, transparent);
  margin-bottom: 0;
  line-height: 1.6;
}

.about .features-boxes .feature-box:hover .icon-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .features-boxes .feature-box:hover h3 a {
  color: var(--accent-color);
}

.about .video-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about .video-box img {
  width: 100%;
  border-radius: 20px;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  transition: 0.3s;
}

.team .team-member:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-member .member-img {
  flex: 0 0 200px;
  overflow: hidden;
}

.team .team-member .member-img img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.team .team-member .member-info {
  padding: 25px;
  text-align: left;
}

.team .team-member .member-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.team .team-member .member-info span {
  font-size: 0.9rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  display: block;
  margin-bottom: 15px;
}

.team .team-member .member-info p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info .social {
  display: flex;
  gap: 10px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  color: var(--heading-color);
  transition: 0.3s;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team .team-member .member-info .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 767px) {
  .team .team-member {
    flex-direction: column;
  }

  .team .team-member .member-img {
    flex: auto;
  }

  .team .team-member .member-img img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .team .team-member .member-info {
    text-align: center;
  }

  .team .team-member .member-info .social {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-card {
  background-color: var(--surface-color);
  padding: 30px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
}

.contact .info-card:hover {
  transform: translateY(-5px);
}

.contact .info-card .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact .info-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
}

.contact .form-wrapper .input-group .input-group-text {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}

.contact .form-wrapper .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 15px;
}

.contact .form-wrapper .input-group .form-control:focus {
  border-color: var(--accent-color);
}

.contact .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .form-wrapper select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}

.contact .form-wrapper textarea.form-control {
  min-height: 160px;
}

.contact .form-wrapper button {
  background-color: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.contact .form-wrapper button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Search Results Posts Section
--------------------------------------------------------------*/
.search-results-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.search-results-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.search-results-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.search-results-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.search-results-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.search-results-posts .title a:hover {
  color: var(--accent-color);
}

.search-results-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.search-results-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.search-results-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination 3 Section
--------------------------------------------------------------*/
.pagination-3 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-3 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-3 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-3 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.pagination-3 li a.active,
.pagination-3 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-3 li a.active a,
.pagination-3 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Map Styles
--------------------------------------------------------------*/
#map {
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  margin: 20px 0;
  min-height: 500px;
}

#map .leaflet-popup-content {
  font-size: 13px;
  line-height: 1.5;
}

#map .leaflet-popup-content b {
  color: var(--default-color);
  display: block;
  margin-bottom: 5px;
}

#map .leaflet-popup-content a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 5px;
}

#map .leaflet-popup-content a:hover {
  text-decoration: underline;
}

/* Locate Control Button */
.locate-control {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin: 10px;
}

.locate-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  background-color: #ffffff !important;
  border: 2px solid #ccc !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-size: 18px !important;
  text-decoration: none !important;
  color: #333333 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.locate-btn:hover {
  background-color: #f0f0f0 !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
  border-color: #999 !important;
}

.locate-btn:active {
  transform: scale(0.95);
}

/* Responsive map */
@media (max-width: 768px) {
  #map {
    min-height: 350px;
  }
}

/*--------------------------------------------------------------
# Berita Page Styles
--------------------------------------------------------------*/

.berita-page {
  background-color: var(--background-color);
}

.blog-post-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-post-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.post-img-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

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

.blog-post-card:hover .post-image {
  transform: scale(1.05);
}

.blog-post-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #666;
}

.post-meta-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-meta-info i {
  color: var(--nav-hover-color);
}

.post-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--heading-color);
}

.post-title a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: var(--nav-hover-color);
}

.post-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.post-footer {
  display: flex;
  justify-content: flex-start;
}

.read-more-btn {
  color: var(--nav-hover-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  color: var(--nav-hover-color);
  gap: 10px;
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(3px);
}

/* Pagination Styles */
.pagination {
  gap: 5px;
}

.page-link {
  color: var(--default-color);
  border-color: #ddd;
  border-radius: 4px;
  margin: 0 3px;
  transition: all 0.3s ease;
  padding: 8px 12px;
}

.page-link:hover {
  background-color: var(--accent-color);
  color: var(--default-color);
  border-color: var(--nav-hover-color);
}

.page-item.active .page-link {
  background-color: var(--nav-hover-color);
  border-color: var(--nav-hover-color);
  color: white;
}

.page-item.disabled .page-link {
  color: #999;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-post-card {
    margin-bottom: 20px;
  }

  .post-img-container {
    height: 200px;
  }

  .post-meta-info {
    font-size: 12px;
    gap: 10px;
  }

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

  .post-excerpt {
    font-size: 13px;
  }

  .latest-posts.section {
    padding: 30px 0;
  }
}

/*--------------------------------------------------------------
# Video Page Styles
--------------------------------------------------------------*/

.video-page {
  background-color: var(--background-color);
}

.video-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.video-thumbnail-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.video-thumbnail-container:hover .video-thumbnail {
  transform: scale(1.05);
  opacity: 0.8;
}

.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s ease;
}

.video-thumbnail-container:hover .play-button-overlay {
  opacity: 1;
}

.play-icon-circle {
  width: 70px;
  height: 70px;
  background: var(--nav-hover-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-thumbnail-container:hover .play-icon-circle {
  transform: scale(1.15);
}

.video-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #666;
}

.video-meta-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.video-meta-info i {
  color: var(--nav-hover-color);
}

.video-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--heading-color);
}

.video-title a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.video-title a:hover {
  color: var(--nav-hover-color);
}

.video-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.video-footer {
  display: flex;
  justify-content: flex-start;
}

.watch-btn {
  color: white;
  background-color: var(--nav-hover-color);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.watch-btn:hover {
  background-color: #f75815;
  transform: translateX(3px);
  color: white;
  text-decoration: none;
}

.watch-btn i {
  transition: transform 0.3s ease;
}

.watch-btn:hover i {
  transform: scale(1.2);
}

/* Responsive Design untuk Video */
@media (max-width: 768px) {
  .video-card {
    margin-bottom: 20px;
  }

  .video-thumbnail-container {
    height: 200px;
  }

  .video-meta-info {
    font-size: 12px;
    gap: 10px;
  }

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

  .video-description {
    font-size: 13px;
  }

  .play-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .video-page.section {
    padding: 30px 0;
  }
}

/* Bottom Navigation Bar */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.3s ease;
  padding: 8px 0;
}

.bottom-nav.hide {
  transform: translateY(100%);
}

.bottom-nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 100%;
  height: 60px;
  padding: 0 10px;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
}

.bottom-nav-item i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
  color: var(--nav-hover-color);
  background-color: #f9f9f9;
}

.bottom-nav-item:hover i,
.bottom-nav-item.active i {
  transform: scale(1.15);
}

.bottom-nav-item span {
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55px;
}

/* Adjust body padding for bottom nav */
body {
  padding-bottom: 70px;
}

/* Responsive Design untuk Bottom Nav */
@media (max-width: 768px) {
  .bottom-nav-container {
    height: 55px;
    padding: 0 3px;
  }

  .bottom-nav-item {
    gap: 2px;
    font-size: 10px;
    padding: 5px 3px;
  }

  .bottom-nav-item i {
    font-size: 18px;
  }

  .bottom-nav-item span {
    font-size: 8px;
    max-width: 48px;
  }

  body {
    padding-bottom: 65px;
  }

  /* Ensure bottom nav is always visible */
  .bottom-nav {
    position: fixed;
    bottom: 0;
    z-index: 9999;
  }
}

/* Lokasi Rumah Sakit Section */
.lokasi-section {
  background-color: var(--background-color);
}
/* ===== GRID CONTAINER ===== */
.lokasi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

/* ===== CARD ===== */
.lokasi-card {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  transition: .25s;
  font-size: 10px;
}

.lokasi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
}

/* ===== IMAGE ===== */
.lokasi-img-wrapper {
  position: relative;
  width: 100%;
  height: 55%;
  background: #f5f5f5;
}

.lokasi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.lokasi-card:hover .lokasi-img {
  transform: scale(1.05);
}

/* ===== OVERLAY ===== */
.lokasi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: .2s;
}

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

.lokasi-link-btn {
  background: var(--nav-hover-color);
  color: #fff;
  font-size: 9px;
  padding: 4px 6px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.lokasi-link-btn:hover {
  background: #f75815;
}

/* ===== CONTENT ===== */
.lokasi-content {
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 45%;
}

/* TITLE */
.lokasi-title {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ADDRESS */
.lokasi-address {
  font-size: 9px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  gap: 4px;
}

.lokasi-address i {
  color: var(--nav-hover-color);
  flex-shrink: 0;
}

/* HIDDEN FOR MINI CARD */
.lokasi-meta,
.lokasi-phone {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .lokasi-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }

  .lokasi-title {
    font-size: 9px;
  }

  .lokasi-address {
    font-size: 8px;
  }
}

/* Video Carousel Styles */
.video-carousel-container {
  position: relative;
  padding: 10px 0;
  margin-bottom: 15px;
}

.video-swiper {
  position: relative;
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 5px;
  background: linear-gradient(135deg, rgba(245, 247, 250, 0.8) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.video-carousel-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-carousel-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.swiper.video-swiper .swiper-slide {
  height: auto;
}

/* Swiper Navigation Buttons */
.video-swiper .swiper-button-prev,
.video-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 18px;
  margin-top: 0;
  outline: none;
}

.video-swiper .swiper-button-prev::after,
.video-swiper .swiper-button-next::after {
  content: '';
}

.video-swiper .swiper-button-prev::before {
  content: '‹';
  font-size: 24px;
  font-weight: bold;
}

.video-swiper .swiper-button-next::before {
  content: '›';
  font-size: 24px;
  font-weight: bold;
}

.video-swiper .swiper-button-prev {
  left: -20px;
}

.video-swiper .swiper-button-next {
  right: -20px;
}

.video-swiper .swiper-button-prev:hover,
.video-swiper .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.08);
}

.video-swiper .swiper-button-prev:after,
.video-swiper .swiper-button-next:after {
  display: none;
}

@media (max-width: 1024px) {
  .video-swiper {
    padding: 5px 35px;
  }

  .video-swiper .swiper-button-prev {
    left: 3px;
  }

  .video-swiper .swiper-button-next {
    right: 3px;
  }
}

@media (max-width: 768px) {
  .video-carousel-container {
    padding: 5px 0;
    margin-bottom: 10px;
  }

  .video-swiper {
    padding: 3px 32px;
  }

  .video-swiper .swiper-button-prev,
  .video-swiper .swiper-button-next {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .video-swiper .swiper-button-prev::before,
  .video-swiper .swiper-button-next::before {
    font-size: 20px;
  }

  .video-swiper .swiper-button-prev {
    left: 2px;
  }

  .video-swiper .swiper-button-next {
    right: 2px;
  }
}

/* ============================================================
   BERITA PAGE - Featured Post & News Grid Styling
   ============================================================ */

/* Featured Post Section */
.featured-post-section {
  margin-bottom: 10px;
}

.featured-post-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.featured-post-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.featured-post-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.featured-img-container {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-post-card:hover .featured-image {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.featured-post-card:hover .featured-overlay {
  opacity: 1;
}

.featured-read-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.featured-read-btn:hover {
  background-color: var(--nav-hover-color);
  transform: translateY(-2px);
}

.featured-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
}

.featured-date,
.featured-views {
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-date i,
.featured-views i {
  color: var(--accent-color);
}

.featured-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--default-color);
}

.featured-title a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-title a:hover {
  color: var(--nav-hover-color);
}

.featured-excerpt {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Category Filter Section */
.category-filter-section {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}

.category-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.category-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 25px;
  color: var(--default-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-btn:hover {
  border-color: var(--nav-hover-color);
  color: var(--nav-hover-color);
}

.category-btn.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

/* News Grid Section */
.news-grid-section {
  min-height: auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.news-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.news-img-container {
  position: relative;
  overflow: hidden;
  height: 200px;
  width: 100%;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image {
  transform: scale(1.08);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-card:hover .play-overlay {
  opacity: 1;
}

.news-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
  flex-wrap: wrap;
}

.news-date,
.news-views {
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-date i,
.news-views i {
  color: var(--accent-color);
  font-size: 11px;
}

.news-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-title a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: var(--nav-hover-color);
}

.news-excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
  flex: 1;
}

.news-read-btn {
  display: inline-block;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.news-read-btn:hover {
  color: var(--nav-hover-color);
  gap: 8px;
}

.news-read-btn i {
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.news-read-btn:hover i {
  transform: translateX(3px);
}

/* Pagination Controls */
.pagination-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid #f0f0f0;
  margin-top: 20px;
}

.pagination-info {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

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

.slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.slide-btn:hover {
  background: var(--nav-hover-color);
  border-color: var(--nav-hover-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slide-btn.prev-slide {
  flex-direction: row-reverse;
}

.slide-btn i {
  transition: transform 0.3s ease;
}

.slide-btn:hover i {
  transform: translateX(-3px);
}

.slide-btn.next-slide:hover i {
  transform: translateX(3px);
}

/* Responsive - Tablet (992px and below) */
@media (max-width: 992px) {
  .featured-post-card {
    grid-template-columns: 1fr;
  }

  .featured-img-container {
    height: 280px;
  }

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

  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .news-img-container {
    height: 180px;
  }

  .news-body {
    padding: 12px;
  }

  .news-title {
    font-size: 14px;
  }

  .news-excerpt {
    font-size: 12px;
  }

  .pagination-controls {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .pagination-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* Responsive - Small Tablet (768px and below) */
@media (max-width: 768px) {
  .featured-post-section {
    margin-bottom: 5px;
  }

  .featured-content {
    padding: 20px;
  }

  .featured-meta {
    gap: 15px;
    font-size: 12px;
  }

  .featured-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .featured-excerpt {
    font-size: 14px;
  }

  .category-filter-section {
    padding: 12px 0;
  }

  .category-buttons {
    gap: 8px;
  }

  .category-btn {
    padding: 6px 16px;
    font-size: 13px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .news-img-container {
    height: 150px;
  }

  .news-body {
    padding: 10px;
  }

  .news-meta {
    gap: 8px;
    font-size: 11px;
  }

  .news-title {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .news-excerpt {
    font-size: 11px;
  }

  .news-read-btn {
    font-size: 11px;
  }

  .pagination-controls {
    padding: 20px 0;
  }

  .pagination-info {
    font-size: 13px;
  }

  .slide-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Responsive - Mobile (576px and below) */
@media (max-width: 576px) {
  .featured-post-card {
    border-radius: 4px;
  }

  .featured-img-container {
    height: 220px;
  }

  .featured-content {
    padding: 15px;
  }

  .featured-meta {
    gap: 10px;
    font-size: 11px;
  }

  .featured-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .featured-excerpt {
    font-size: 13px;
  }

  .featured-read-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .category-filter-section {
    padding: 10px 0;
  }

  .category-buttons {
    gap: 6px;
  }

  .category-btn {
    padding: 5px 14px;
    font-size: 12px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .news-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
  }

  .news-img-container {
    height: 100px;
    width: 100px;
    border-radius: 4px;
    overflow: hidden;
  }

  .news-body {
    padding: 8px;
  }

  .news-meta {
    gap: 6px;
    font-size: 10px;
  }

  .news-title {
    font-size: 12px;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .news-excerpt {
    display: none;
  }

  .news-read-btn {
    font-size: 10px;
  }

  .pagination-controls {
    padding: 15px 0;
    gap: 12px;
  }

  .pagination-info {
    font-size: 12px;
    width: 100%;
    text-align: center;
  }

  .pagination-buttons {
    width: 100%;
    flex-direction: column;
  }

  .slide-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* Featured Video Section */
.featured-video-card {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.featured-video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.featured-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-video-thumbnail:hover .featured-video-img {
  transform: scale(1.05);
}

.featured-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.featured-video-thumbnail:hover .featured-play-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.featured-play-circle {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

.featured-video-thumbnail:hover .featured-play-circle {
  transform: scale(1.1);
}

.featured-video-info {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 40px 30px 30px;
}

.featured-video-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-video-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Category Section */
.category-section {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.category-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.category-btn {
  padding: 8px 20px;
  border: 2px solid #dee2e6;
  border-radius: 25px;
  background: #fff;
  color: #495057;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-btn:hover {
  border-color: #007bff;
  color: #007bff;
}

.category-btn.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.video-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.video-thumbnail-container {
  position: relative;
  overflow: hidden;
  height: 200px;
  width: 100%;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail {
  transform: scale(1.05);
}

.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .play-button-overlay {
  opacity: 1;
}

.play-icon-circle {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.video-card:hover .play-icon-circle {
  transform: scale(1.1);
}

.video-meta-info {
  padding: 15px 20px 0;
}

.video-meta-info span {
  font-size: 12px;
}

.video-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.video-title a {
  color: #212529;
  text-decoration: none;
  transition: color 0.3s ease;
}

.video-title a:hover {
  color: #007bff;
}

.video-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 15px;
}

.watch-btn {
  margin: 0 20px 20px;
  align-self: flex-start;
  font-size: 12px;
  padding: 6px 12px;
}

/* Kategori Section - Carousel Card Style */
#kategori-section {
  padding: 15px 15px !important;
  background: linear-gradient(135deg, rgba(132, 221, 248, 0.9) 0%, rgba(132, 221, 248, 0.7) 100%);
}

#kategori-section h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

/* Responsive padding for kategori section */
@media (min-width: 576px) {
  #kategori-section {
    padding: 15px 18px !important;
  }
}

@media (min-width: 992px) {
  #kategori-section {
    padding: 15px 25px !important;
  }
}

/* Kategori Buttons Container */
.kategori-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-behavior: smooth;
}

.kategori-buttons::-webkit-scrollbar {
  height: 6px;
}

.kategori-buttons::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.kategori-buttons::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}

/* Kategori Buttons */
.kategori-btn {
  padding: 8px 18px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  flex-shrink: 0;
}

.kategori-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

.kategori-btn.active {
  border: 2px solid #fff !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6) !important;
  transform: scale(1.05) !important;
}

/* News Grid for Categories */
.kategori-section .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.kategori-section .news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kategori-section .news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.kategori-section .news-img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.kategori-section .news-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kategori-section .news-card:hover .news-img-container img {
  transform: scale(1.05);
}

/* Badge for Card */
.kategori-section .news-card::before {
  content: attr(data-badge);
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff9800, #ff6b35);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
}

/* News Body */
.kategori-section .news-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.kategori-section .news-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #999;
}

.kategori-section .news-category {
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  color: #666;
  font-weight: 600;
}

.kategori-section .news-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
}

.kategori-section .news-title a {
  color: #333;
  transition: color 0.3s ease;
}

.kategori-section .news-title a:hover {
  color: #007bff;
}

.kategori-section .news-excerpt {
  flex-grow: 1;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.kategori-section .news-read-btn {
  display: inline-block;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.kategori-section .news-read-btn:hover {
  background: linear-gradient(135deg, #0056b3, #003d82);
  transform: translateX(3px);
}

/* Show All Categories Button */
#show-all-categories-btn {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 25px !important;
  border-radius: 25px !important;
  transition: all 0.3s ease !important;
  margin-top: 20px;
}

#show-all-categories-btn:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Kategori Buttons Active State */
.kategori-buttons a.active {
  border: 2px solid #fff !important;
  box-shadow: 0 0 10px rgba(255,255,255,0.5) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .kategori-section .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  #kategori-section h4 {
    font-size: 1.5rem;
  }

  .kategori-section .news-card {
    border-radius: 12px;
  }

  .kategori-section .news-title {
    font-size: 0.95rem;
  }

  .kategori-section .news-excerpt {
    font-size: 0.85rem;
  }

  .kategori-section .news-read-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .kategori-btn {
    padding: 6px 14px !important;
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .kategori-section .news-grid {
    grid-template-columns: 1fr;
  }

  #kategori-section h4 {
    font-size: 1.3rem;
  }

  .kategori-section .news-body {
    padding: 15px;
  }

  .kategori-section .news-title {
    font-size: 0.9rem;
  }
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #666;
  font-size: 12px;
  transition: color 0.3s;
  padding: 5px;
  min-width: 60px;
}

.bottom-nav-item.active {
  color: #007bff;
}

.bottom-nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
}

.bottom-nav-item span {
  font-size: 10px;
  font-weight: 500;
}

.bottom-nav-item:hover {
  color: #007bff;
}

/* Mobile adjustments for bottom nav */
@media (max-width: 768px) {
  .bottom-nav {
    padding: 12px 0;
  }

  .bottom-nav-item {
    font-size: 14px;
    min-width: 70px;
    padding: 8px;
  }

  .bottom-nav-item i {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .bottom-nav-item span {
    font-size: 12px;
  }
}

/* Kategori Carousel - Horizontal Scrolling */
.kategori-carousel {
  overflow: visible !important;
  padding-bottom: 5px;
  width: 100%;
  display: block;
  position: relative;
}

.kategori-carousel.swiper {
  padding: 0 !important;
  position: relative;
}

/* Navigation Arrows */
.kategori-nav-prev,
.kategori-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.kategori-nav-prev {
  left: -18px;
}

.kategori-nav-next {
  right: -18px;
}

.kategori-nav-prev i,
.kategori-nav-next i {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
}

.kategori-nav-prev:hover,
.kategori-nav-next:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.kategori-nav-prev:active,
.kategori-nav-next:active {
  transform: translateY(-50%) scale(0.95);
}

.kategori-carousel .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Mobile - 1.2 slides */
@media (max-width: 480px) {
  .kategori-carousel {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .kategori-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(83.333% - 2px);
    height: auto;
  }

  .kategori-nav-prev,
  .kategori-nav-next {
    width: 30px;
    height: 30px;
  }

  .kategori-nav-prev {
    left: -15px;
  }

  .kategori-nav-next {
    right: -15px;
  }

  .kategori-nav-prev i,
  .kategori-nav-next i {
    font-size: 16px;
  }
}

/* Tablet Small - 1.4 slides */
@media (min-width: 481px) and (max-width: 575px) {
  .kategori-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(71.428% - 3px);
    height: auto;
  }
}

/* Tablet - 1.6 slides */
@media (min-width: 576px) and (max-width: 767px) {
  .kategori-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(62.5% - 4px);
    height: auto;
  }
}

/* Medium - 2.2 slides */
@media (min-width: 768px) and (max-width: 1023px) {
  .kategori-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(45.454% - 4px);
    height: auto;
  }
}

/* Large - 2.8 slides */
@media (min-width: 1024px) and (max-width: 1399px) {
  .kategori-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(35.714% - 4px);
    height: auto;
  }
}

/* Desktop - 3 slides */
@media (min-width: 1400px) {
  .kategori-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(33.333% - 4px);
    height: auto;
  }
}

.kategori-carousel .swiper-slide {
  cursor: grab;
}

.kategori-carousel .swiper-slide:active {
  cursor: grabbing;
}

/* Hide scrollbar for webkit browsers */
.kategori-carousel .swiper-wrapper {
  -webkit-scrollbar: none;
  scrollbar-width: none;
}

.kategori-carousel .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

/* Kategori Card Design - Modern Travel Card Style */
.kategori-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.kategori-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.kategori-card-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/12;
  background: linear-gradient(135deg, #84ddf8 0%, #4eb7d4 100%);
}

.kategori-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kategori-card:hover .kategori-card-img {
  transform: scale(1.02);
}

.kategori-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 14px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 6px rgba(255, 107, 53, 0.25);
}

.kategori-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px;
  background: #ffffff;
}

.kategori-card-title {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 2px 0;
  line-height: 1.15;
  font-family: var(--heading-font);
}

.kategori-card-desc {
  font-size: 10px;
  color: #666;
  margin: 0 0 6px 0;
  line-height: 1.25;
  flex: 1;
}

.kategori-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 5px;
  border-top: 1px solid #f0f0f0;
  gap: 6px;
}

.kategori-card-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.kategori-stat-label {
  font-size: 9px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-weight: 600;
}

.kategori-stat-value {
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: var(--heading-font);
}

.kategori-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.kategori-card-btn:hover {
  background: linear-gradient(135deg, #0056b3 0%, #003d80 100%);
  transform: translateX(1px);
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
  color: #ffffff;
}

.kategori-card-btn:active {
  transform: translateX(0px);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .kategori-card-title {
    font-size: 12px;
  }

  .kategori-card-desc {
    font-size: 10px;
  }

  .kategori-card-btn {
    padding: 4px 8px;
    font-size: 10px;
  }
}

/* Related Posts Carousel - Horizontal Scrolling */
.related-carousel {
  overflow: visible !important;
  padding-bottom: 5px;
  width: 100%;
  display: block;
  position: relative;
  margin-top: 20px;
}

.related-carousel.swiper {
  padding: 0 !important;
  position: relative;
}

.related-carousel .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Navigation Arrows for Related Posts */
.related-nav-prev,
.related-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.related-nav-prev {
  left: -18px;
}

.related-nav-next {
  right: -18px;
}

.related-nav-prev i,
.related-nav-next i {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
}

.related-nav-prev:hover,
.related-nav-next:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.related-nav-prev:active,
.related-nav-next:active {
  transform: translateY(-50%) scale(0.95);
}

/* Responsive Carousel Slides */
@media (max-width: 480px) {
  .related-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(100% - 8px);
    height: auto;
  }

  .related-nav-prev,
  .related-nav-next {
    width: 30px;
    height: 30px;
  }

  .related-nav-prev {
    left: -12px;
  }

  .related-nav-next {
    right: -12px;
  }

  .related-nav-prev i,
  .related-nav-next i {
    font-size: 16px;
  }
}

@media (min-width: 481px) and (max-width: 575px) {
  .related-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(76.923% - 8px);
    height: auto;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .related-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(66.666% - 10px);
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .related-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(50% - 12px);
    height: auto;
  }
}

@media (min-width: 1024px) {
  .related-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(33.333% - 12px);
    height: auto;
  }
}

/* Pin Badge for Posts */
.post-pin-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 3px 12px rgba(255, 107, 107, 0.35);
  display: flex;
  align-items: center;
  gap: 5px;
  animation: pinPulse 2s infinite;
}

.post-pin-badge i {
  font-size: 12px;
  animation: pinBounce 1.5s ease-in-out infinite;
}

@keyframes pinPulse {
  0%, 100% {
    box-shadow: 0 3px 12px rgba(255, 107, 107, 0.35);
  }
  50% {
    box-shadow: 0 3px 20px rgba(255, 107, 107, 0.55);
  }
}

@keyframes pinBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Category Description Card */
.category-description-card {
  display: block;
}

.category-description-card .card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-left: 4px solid #0d6efd !important;
  transition: all 0.3s ease;
}

.category-description-card .card:hover {
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.15) !important;
  transform: translateY(-2px);
}

.category-description-card .card-body {
  border-radius: 8px;
}

.category-description-card .category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.category-description-card .card-title {
  font-size: 18px;
  letter-spacing: 0.5px;
}

.category-description-card .card-text {
  margin: 0;
}

/* Responsive adjustments for description card */
@media (max-width: 768px) {
  .category-description-card .card-body {
    padding: 1.5rem !important;
  }

  .category-description-card .card-title {
    font-size: 16px;
  }

  .category-description-card .card-text {
    font-size: 13px;
  }

  .category-description-card .category-icon {
    width: 40px;
    height: 40px;
  }

  .category-description-card .category-icon i {
    font-size: 22px !important;
  }
}

/* Category Content Carousel - Horizontal Scrolling */
.category-content-carousel {
  overflow: visible !important;
  padding-bottom: 5px;
  width: 100%;
  display: block;
  position: relative;
  margin-top: 20px;
}

.category-content-carousel.swiper {
  padding: 0 !important;
  position: relative;
}

.category-content-carousel .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Navigation Arrows for Category Content */
.content-carousel-prev,
.content-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-carousel-prev {
  left: -18px;
}

.content-carousel-next {
  right: -18px;
}

.content-carousel-prev i,
.content-carousel-next i {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
}

.content-carousel-prev:hover,
.content-carousel-next:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.content-carousel-prev:active,
.content-carousel-next:active {
  transform: translateY(-50%) scale(0.95);
}

/* Responsive Carousel Slides */
@media (max-width: 480px) {
  .category-content-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(100% - 8px);
    height: auto;
  }

  .content-carousel-prev,
  .content-carousel-next {
    width: 30px;
    height: 30px;
  }

  .content-carousel-prev {
    left: -12px;
  }

  .content-carousel-next {
    right: -12px;
  }

  .content-carousel-prev i,
  .content-carousel-next i {
    font-size: 16px;
  }
}

@media (min-width: 481px) and (max-width: 575px) {
  .category-content-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(76.923% - 8px);
    height: auto;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .category-content-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(66.666% - 10px);
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .category-content-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(50% - 12px);
    height: auto;
  }
}

@media (min-width: 1024px) {
  .category-content-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(45.45% - 12px);
    height: auto;
  }
}

/* ===== COMMENTS SECTION ===== */
.comments-section {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}

.comments-header {
  margin-bottom: 30px;
}

.comments-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comments-count {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

/* Comment Form */
.comment-form-wrapper {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
}

.comment-form-wrapper h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.comment-form-group {
  margin-bottom: 15px;
}

.comment-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--default-color);
  font-size: 14px;
}

.comment-form-group input,
.comment-form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--default-font);
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.comment-form-group input:focus,
.comment-form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.comment-form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.comment-form-group.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.comment-submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.comment-submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.comment-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Comments List */
.comments-list {
  margin-top: 30px;
}

.comment-item {
  padding: 20px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  margin-bottom: 15px;
  background: #fff;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.comment-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateX(2px);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.comment-author {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 15px;
  margin-bottom: 4px;
}

.comment-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  gap: 10px;
}

.comment-content {
  color: var(--default-color);
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
  word-wrap: break-word;
}

.empty-comments {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 14px;
}

.empty-comments i {
  font-size: 48px;
  display: block;
  margin-bottom: 10px;
  color: #ddd;
}

/* Loading Spinner */
.comments-loader {
  display: none;
  text-align: center;
  padding: 20px;
}

.comments-loader.show {
  display: block;
}

.spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Error Message */
.comment-error {
  background: #fee;
  border: 1px solid #fcc;
  color: #c33;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 13px;
}

.comment-success {
  background: #efe;
  border: 1px solid #cfc;
  color: #3c3;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 576px) {
  .comment-form-group.two-col {
    grid-template-columns: 1fr;
  }

  .comments-header h3 {
    font-size: 20px;
  }

  .comment-form-wrapper {
    padding: 15px;
  }

  .comment-item {
    padding: 15px;
    margin-bottom: 12px;
  }

  .comment-content {
    font-size: 13px;
  }
}