
html,
body {
  overflow-x: hidden;
}
:root {
  /* widths for rows and containers
     */
  --header-height: 160px;
  --header-height-min: 80px;
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}


/* Theme Colors */
:root {
  --accent-color: #C5A992;
  --secondary-color: #C5A992;
  --dark-color: #2f2f2f;
  --light-color: #F3F2EC;
  --body-text-color: #757575;
  --light-text-color: #afafaf;
  --dark-text-color: #2f2f2f;
}

/* Fonts */
:root {
  --body-font: "Raleway", sans-serif;
  --heading-font: "Prata", Georgia, serif;
  --secondary-font: "Playfair Display", Georgia, serif;
}

/* Bootstrap variables */
:root,
[data-bs-theme=light] {
  --heading-font: "Prata", Georgia, serif;
  --heading-font-weight: 400;
  --heading-color: var(--bs-dark);
  --heading-line-height: 1.1;

  --swiper-theme-color: var(--bs-primary);

  --custom-easing: cubic-bezier(.17, .67, .83, .67);

  /* theme colors */
  --bs-body-font-family: "Raleway", arial, sans-serif;
  --bs-body-font-size: 0.9rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.7;
  --bs-body-color: #333;
  --bs-body-color-rgb: 51, 51, 51;

  --bs-primary: #C5A992;
  --bs-primary-dark: #C5A992;
  --bs-secondary: #C5A992;
  --bs-black: #111;
  --bs-light: #F1F1F0;
  --bs-dark: #212529;
  --bs-gray: #949494;
  --bs-gray-dark: #51565b;

  --bs-primary-rgb: 169, 128, 115;
  --bs-secondary-rgb: 253, 238, 233;
  --bs-black-rgb: 17, 17, 17;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: var(--bs-dark);
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-hover-color-rgb: 169, 128, 115;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  /* spacing */
  --bs-gutter-x: 2.5rem;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  line-height: var(--heading-line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

/* container fluid */
.container-fluid {
  /* width: 98%; */
  max-width: 1800px;
}

/* Dropdown */
.dropdown-menu {
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-border-width: 0;
}
.has-sub {
  position: relative;
}

.has-sub>ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0f2a44;
  min-width: 200px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  display: none;
  z-index: 9999;
}

.has-sub>ul li a {
  display: block;
  padding: 8px 16px;
  color: white;
  text-decoration: none;
}

.has-sub>ul li a:hover {
  background: #BBCB2E;
}

.dropdown-item {
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-link-color: var(--bs-black);
  --bs-dropdown-item-border-radius: 0;
}

.dropdown-item.active,
.dropdown-item:active {
  --bs-dropdown-link-active-color: var(--bs-light);
  --bs-dropdown-link-active-bg: var(--bs-black);
}

/* list group */
.list-group-item {
  --bs-list-group-item-padding-x: 0;
  --bs-list-group-border-width: 0;
}

/* btn */
.btn {
  --bs-btn-border-radius: 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary-dark);
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-secondary);
  --bs-btn-active-border-color: var(--bs-secondary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-gradient: none;
}

.pagination {
  --bs-pagination-active-bg: var(--bs-black);
  --bs-pagination-bg: transparent;
  --bs-pagination-border-width: 0;
  --bs-pagination-border-radius: 0;
}

/* breadcrumb */
.breadcrumb {
  --bs-breadcrumb-item-padding-x: 1em;
}

/* text white */
.text-white {
  --heading-color: var(--bs-light);
  --bs-breadcrumb-item-active-color: var(--bs-light);
  --bs-breadcrumb-divider-color: var(--bs-light);
  --bs-link-color-rgb: var(--bs-light-rgb);
  --bs-link-hover-color-rgb: var(--bs-light-rgb);
}

.text-white .nav-link {
  --bs-nav-link-color: var(--bs-light);
  --bs-nav-link-hover-color: var(--bs-light);
  --bs-nav-link-active-color: var(--bs-light);
  --bs-navbar-active-color: var(--bs-light);
}

/* accordion */
.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-dark);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-focus-border-color: var(--bs-dark);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-dark);
  --bs-accordion-active-bg: transparent;
}

.accordion-button {
  font-size: 1.2rem;
  border-bottom: 1px solid var(--bs-border-color);
}

/* form control */
.form-control:focus {
  border-color: #ccc;
  box-shadow: 0 0 0 0.25rem rgba(200, 200, 200, .25);
}

/* dark theme */
[data-bs-theme=dark] {
  color-scheme: dark;

  --heading-color: #fff;
  --bs-heading-color: #fff;
  --bs-link-color: #CCCCCC;
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-color-rgb: 204, 204, 204;
  --bs-link-hover-color-rgb: 131, 169, 172;
  --bs-body-color: var(--bs-light);
  --bs-body-color-rgb: 241, 241, 240;
  --bs-body-bg: #111;
  --bs-body-bg-rgb: 17, 17, 41;

  color: var(--bs-gray);
}

[data-bs-theme=dark] .dropdown-item {
  --bs-dropdown-link-color: var(--bs-light);
  --bs-dropdown-link-hover-color: var(--bs-white);
}

[data-bs-theme=dark] .bg-white,
[data-bs-theme=dark] .bg-light {
  --bs-bg-opacity: 0.1;
}

/* end of Bootstrap Color Theme */

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 3rem;
}

/* Background Colors All */
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}
:root {
  --light-color: #F3F2EC;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 2;
  color: var(--body-text-color);
  background-color: var(--light-color);
}
body.no-scroll {
  overflow: hidden;
}

a {
  color: var(--accent-color);
  transition: 0.3s color ease-out;
}

a:hover {
  color: #111;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 5px;
  margin-bottom: 0;
}

ul li,
ol li {
  margin-bottom: 5px;
  outline: 0;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}

dl {
  margin-top: 0;
  margin-bottom: 2rem;
}

dt,
dd {
  line-height: 1.42857143;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: 0;
}

figure {
  margin: 0;
}

img {
  display: inline-block;
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

::selection {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-shadow: none;
}

/* image align */
figure.align-right {
  margin: 30px 0 30px 30px;
}

/* Typography */
/*----------------------------------------------*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  line-height: 1.2;
  color: var(--dark-color);
}

h1.light,
.h1,
h2.light,
.h2,
h3.light,
.h3,
h4.light,
.h4,
h5.light,
.h5,
h6.light,
.h6 {
  color: #fff;
}

h1,
h2,
h3 {
  margin: 25px 0;
  text-transform: none;
}

h5,
h6 {
  letter-spacing: 1px;
}

h1,
.h1 {
  font-size: 2.5em;
  line-height: 1.4;
}

h2,
.h2 {
  font-size: 1.5em;
  line-height: 1.4;
}

h3,
.h3 {
  font-size: 1.4em;
  line-height: 1.4;
}

h4,
.h4 {
  font-size: 1.1em;
  line-height: 1.4;
}

h5,
.h5 {
  font-size: .83em;
  line-height: 1.25;
}

h6,
.h6 {
  font-size: .67em;
  line-height: 1.1;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 20px 0;
}

p:empty {
  display: none;
}

small {
  font-size: 85%;
}

mark {
  background-color: #fcf8e3;
  padding: 0.28rem;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

code,
kbd,
var {
  font-size: 14px;
}

code {
  background-color: #f9f2f4;
}

abbr {
  border-bottom: 0.1px dotted #666;
  cursor: help;
}

::placeholder {
  color: #999;
}

/*----------------------------------------------*/
/* 2.1 Floating & Alignment */
/*----------------------------------------------*/

.align-left {
  float: left;
  text-align: left;
}

.align-right {
  float: right;
  text-align: right;
}

.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/**::after,*/
.container::after,
.row::after,
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/** Text Align
--------------------------------------------------------------*/

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lead {
  font-size: 120%;
  line-height: 1.7em;
}

.text-lead strong {
  font-size: 115%;
  font-weight: 500;
}

.text-muted {
  color: #777;
}

.text-pri {
  color: #ff9697;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/*------------------------------------------------
/* 2.3 Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0;
}

label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label>.label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal;
}

/*------------------------------------------------
/* 2.4 Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}

ol {
  list-style: decimal inside;
}

ol,
ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%;
}

li {
  margin-bottom: 1rem;
}

/*------------------------------------------------
/* 2.5 Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
}

pre>code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

/*------------------------------------------------
/* 2.6 Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

/*------------------------------------------------
/* 2.7 Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

/*------------------------------------------------
/* 2.8 Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}

.list-icon i {
  margin-right: 10px;
}

.list-unstyled {
  list-style: none;
}

.txt-fx .letter {
  opacity: 0;
}

/*------------------------------------------------
/* 2.9 Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
}

/*--------------------------------------------------------------
/** 2.10 Buttons
--------------------------------------------------------------*/
a.btn,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"],
button {
  background-image: none;
  background: var(--accent-color);
  text-decoration: none !important;
  display: inline-block;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.75em 1.5em;
  margin-top: 15px;
  font-size: 15px;
  font-weight: bold;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  z-index: 1;
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:hover,
.btn:focus,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="file"]:focus,
input[type="file"]:hover,
button:focus,
button:hover {
  text-decoration: none;
  outline: 0;
}

.light .btn:hover {
  color: #fff;
}

.btn:last-child {
  margin-right: 0;
}

.btn:active,
.btn.btn-outline-light:active,
.btn.btn-outline-dark:active,
.btn.btn-outline-accent:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="file"]:active,
button:active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
  padding: 0.325em 1.7em;
  font-size: 0.65em;
}

.btn.btn-medium {
  padding: 0.5em 1.75em;
  font-size: 0.75em;
}

.btn.btn-large {
  padding: 1em 2.5em;
}

.btn.btn-xlarge {
  padding: 1.5em 2.7em;
  font-size: 0.9em;
}

.btn.btn-image {
  background-color: transparent;
  padding: 0;
  max-height: 50px;
}

.btn.btn-image img {
  max-height: 50px;
}

/* - Button Shapes
------------------------------------------------------------- */
.btn.btn-rounded,
.btn.btn-rounded::after {
  border-radius: 4px;
}

.btn.btn-pill,
.btn.btn-pill::after {
  border-radius: 2em;
}

/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
  border: 1px solid #fff;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}

.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
  background-color: transparent;
}

.btn.btn-outline-dark {
  border-color: #121212;
  color: #121212;
}

.btn.btn-outline-dark:hover {
  background: rgba(0, 0, 0, .03);
  background: #121212;
  border-color: #121212;
  color: #fff;
}

.btn.btn-outline-accent {
  background: transparent;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.btn.btn-outline-accent:hover {
  border-color: var(--dark-color);
  color: var(--dark-color) !important;
}

.btn.btn-outline-light {
  background: transparent;
  border-color: var(--light-text-color);
  color: var(--light-text-color);
}

.btn.btn-outline-light:hover {
  border-color: var(--accent-color);
  color: var(--accent-color) !important;
}

.btn.btn-full {
  display: block;
  margin: .85em 0;
  width: 100%;
  text-align: center;
}

/* button with line */
.btn-with-line {
  color: #fff;
  position: relative;
}

.btn-with-line:after {
  content: "";
  position: absolute;
  top: 8px;
  right: -66px;
  border-bottom: 2px solid #fff;
  width: 50%;
  z-index: 9;
  transition: 0.3s ease-out;
}

.btn-with-line:hover {
  color: #fff;
}

.btn-with-line:hover:after {
  width: 30%;
  right: -41px;
}

/* - Buttons Color Scheme
------------------------------------------------------------- */
.btn.btn-common {
  background: var(--accent-color);
  color: #fff;
}

.btn.btn-common:hover {
  background: #151515;
  color: #fff;
}

.btn.btn-accent {
  color: #ffffff;
  background-color: var(--accent-color);
}

.btn.btn-accent:hover {
  color: #ffffff !important;
  background-color: #121212;
}

.btn.btn-gray,
.btn.btn-grey {
  background: #9e9e9e;
  color: #fff;
}

.btn.btn-black {
  background: #121212;
  color: #fff;
}

.btn.btn-black:hover {
  background-color: #797979;
}

.btn.btn-white {
  background: #f8f8f8;
  text-shadow: none;
  color: #121212 !important;
}

.btn.btn-white:hover {
  background: var(--accent-color);
  text-shadow: none;
}

/* - Buttons Aligns
------------------------------------------------------------- */
.btn-left {
  text-align: left;
  display: block;
}

.btn-center {
  text-align: center;
  display: block;
}

.btn-right {
  text-align: right;
  display: block;
}


/*====================================================================*/
/* 5. CONTENT ELEMENTS */
/*====================================================================*/

/*--------------------------------------------------------------
/** 5.1 General Tabs
--------------------------------------------------------------*/
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent-color);
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  color: #999;
  padding: 10px 30px;
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  border-color: #dee2e6 #dee2e6 #f3f2ec;
  --bs-nav-tabs-link-active-bg: transparent;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill>.nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified>.nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.bootstrap-tabs .tab-content {
  padding: 20px 0;
}

.bootstrap-tabs .tab-content>.tab-pane {
  display: none;
}

.bootstrap-tabs .tab-content>.active {
  display: block;
}

/*--------------------------------------------------------------
/** 5.2 Accordions
--------------------------------------------------------------*/
.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  color: var(--accent-color);
  /*box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);*/
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
  border-top: 0;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/


/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}

.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}

.padding-xlarge {
  padding-top: 9.5em;
  padding-bottom: 9.5em;
}

.padding-2xlarge {
  padding-top: 15em;
  padding-bottom: 15em;
}

/* no padding */
.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-gutter {
  padding: 0 !important;
}

/* no padding and margin */
.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}

.margin-medium {
  margin-top: 4.5em;
  margin-bottom: 4.5em;
}

.margin-large {
  margin-top: 6em;
  margin-bottom: 6em;
}

.margin-xlarge {
  margin-top: 7.5em;
  margin-bottom: 7.5em;
}

@media only screen and (max-width: 768px) {

  .margin-small,
  .margin-medium,
  .margin-large,
  .margin-xlarge {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

/* - Button
------------------------------------------------------------- */

button {
  font-size: 1em;
  font-weight: 600;
  border: none;
  height: 65px;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-wrap {
  text-transform: capitalize;
}

.btn-wrap a {
  text-decoration: none;
  font-weight: 600;
}

.btn-wrap a:hover {
  color: #74642F;
}

.btn-normal {
  color: #fff;
}

.btn-accent {
  color: #111;
}

.btn-submit {
  background: #fff;
  color: #2f2f2f;
}

.btn-submit:hover {
  background-color: #c5a992;
  color: #fff;
}

.btn-accent-arrow {
  color: #111;
}

.btn-wrap i.icon {
  transition: 0.5s ease-out;
  font-size: 9px;
  padding-left: 10px;
}

.btn-wrap:hover i.icon {
  padding-left: 20px;
}

.btn-subscribe {
  width: 30%;
  color: #111;
  background: transparent;
  margin: 0;
  height: max-content;
}

.btn-subscribe span {
  transition: 0.5s ease-out;
  padding-right: 5px;
  opacity: 1;
}

.btn-subscribe:hover span {
  padding-right: 10px;
  opacity: 0.5;
}

/*--- Image hover Effect
-----------------------------------------------*/
.image-hvr-effect {
  display: flex;
  overflow: hidden;
}

.image-hvr-effect img.post-image {
  transform: scale(1);
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.image-hvr-effect:hover img.post-image {
  transform: scale(1.1);
}


/*--- Pattern Overlay
-----------------------------------------------*/
.pattern-overlay {
  background-image: url(images/pattern1.png);
  background-repeat: no-repeat;
  background-position: top right;
}

.leaf-pattern-overlay {
  background-image: url(images/leaf.png);
  background-repeat: no-repeat;
  background-position: bottom left;
}

.corner-pattern-overlay {
  background-image: url(images/pattern2.png);
  background-repeat: no-repeat;
  background-position: top right;
}

/*--- Page Title
-----------------------------------------------*/
.page-title {
  font-size: 4.5em;
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .page-title {
    font-size: 2.5em;
    margin-top: 1em;
  }
}

/*--- Section Title
-----------------------------------------------*/
.section-header {
  position: relative;
}

.section-title {
  font-size: 3em;
  font-weight: 500;
  line-height: 1;
  position: relative;
  margin-bottom: 75px;
}

.section-title.divider {
  width: 100%;
}

.section-title.divider:after {
  content: "";
  border-bottom: 3px solid #74642F;
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  width: 50px;
}

.section-header .section-title:before,
.section-header .section-title:after {
  content: "";
  border-bottom: 1px solid #E0E0E0;
  position: absolute;
  top: 30px;
  width: 25%;
  align-items: center;
}

.section-header .section-title:before {
  left: 3px;
}

.section-header .section-title:after {
  right: 3px;
}

.section-header .title span {
  font-size: 14px;
  color: #afafaf;
  text-transform: uppercase;
}


@media screen and (max-width: 1366px) {

  .section-header .section-title:before,
  .section-header .section-title:after {
    width: 30%;
  }
}

@media screen and (max-width: 999px) {

  .section-header .section-title:before,
  .section-header .section-title:after {
    width: 25%;
  }
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2em;
  }

  .section-header .section-title:before,
  .section-header .section-title:after {
    top: 60px;
    width: 100%;
  }
}

/* -- Image Dimension
--------------------------------------------------------------*/
img.post-image {
  width: 100%;
  height: 328px;
  object-fit: cover;
}

/* -- Slick Slide
--------------------------------------------------------------*/
/* .slick-dots {
  bottom: -100px;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  background: #D7D5CC;
  color: #D7D5CC;
  border-radius: 50%;
}

.slick-dots .slick-active {
  color: #74642F;
  background: #74642F;
  border: 1px solid #D7D5CC;
  outline: 1px solid #D7d5cc;
} */

/* -- Top Menu Part
--------------------------------------------------------------*/
.top-content {
}

.social-links ul {
  list-style: none;
  display: flex;
  margin-bottom: 0;
}

.social-links a {
  color: var(--dark-text-color);
  text-decoration: none;
}
.social-links ul {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  border-radius: 50%;
  color: #444;
  transition: all 0.3s ease;
}

/* FACEBOOK */
.social-links a:hover .fa-facebook {
  color: #1877F2;
}

/* TWITTER / X */
.social-links a:hover .fa-twitter {
  color: #00acee;
}

/* WHATSAPP */
.social-links a:hover .fa-whatsapp {
  color: #25D366;
}

/* efek tambahan */
.social-links a:hover {
  transform: translateY(-3px);
}

.top-content li {
  padding-right: 30px;
}

.top-content li:last-child {
  padding-right: 0;
}

.top-content a {
  color: #555;
  text-decoration: none;
}

.top-content .right-element {
  text-align: right;
}

.top-content .right-element .for-buy {
  margin-right: 40px;
}

/* - Search Form hover Effects
------------------------------------------------------------- */



.action-menu .side-nav-bar .menu-btn a,
.action-menu .searchbar a {
  color: #000;
  text-decoration: none;
  line-height: 2.2;
}

.action-menu .icon.icon-menu-btn:hover {
  color: #fff;
  text-decoration: none;
}

.action-menu .menu-btn a {
  color: #07051a;
  text-decoration: none;
}

.action-menu .icon.icon-menu-btn:hover {
  color: var(--accent-color);
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .action-menu .search-bar {
    margin-top: 20px;
    width: 100%;
  }
}
/* =========================================================
   SEARCH FORM HOVER EFFECTS
========================================================= */

.action-menu .icon {
  font-size: 18px;
  font-weight: 800;
}


.action-menu .menu-btn a {
  color: #07051a;
  text-decoration: none;
}

.action-menu .icon.icon-menu-btn:hover {
  color: var(--accent-color);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .action-menu .search-bar {
    margin-top: 20px;
    width: 100%;
  }
}

/* =========================================================
   MAIN NAVIGATION
========================================================= */
#header {
  padding: 20px 0;
  border-bottom: 1px solid #E0E0E0;
  background-color: #47A880;
  
  /* SMOOTH BASE */
  transition:
    background-color 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s ease,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.45s ease;
}
#header-wrap .search-box {
  display: flex;
  align-items: center;
}

#header-wrap .search-input {
  outline: none;
}

#header .menu-list a {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: color 0.3s ease;
}

#header .menu-list a.active {
  color: var(--accent-color);
}

/* HEADER BASE */
#header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  background: #ffffff;
  box-shadow: none;

  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SAAT SCROLL */
#header.fixed-top {
  background-color: rgba(255, 255, 255, 0.92);
  transition-delay: 0.05s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

/* CONTAINER */
#header .container-fluid {
  padding-top: 18px;
  padding-bottom: 18px;

  transition:
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#header.fixed-top .container-fluid {
  padding-top: 8px;
  padding-bottom: 8px;
}

/* LOGO */
#header .logo-img {
  height: 52px;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#header.fixed-top .logo-img {
  height: 40px;
}
/* ================= NAV MINI LOGO ================= */
.nav-logo {
  display: none;
  align-items: center;
}

.nav-logo img {
  height: 34px;
  transition: all 0.3s ease;
}

.main-nav.scrolled .nav-logo {
  display: flex;
  margin-right: 20px;
}

/* MENU */
#header .menu-list a,
#header .nav-link {
  color: #000000;
  transition: color 0.4s ease;
}

#header.fixed-top .menu-list a,
#header.fixed-top .nav-link {
  color: #000000 !important;
}
/* BODY OFFSET */
body.has-fixed-header {
  padding-top: 90px;
}


/* ===== SLIDER ITEM ===== */
.main-slider .slider-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ===== TEXT AREA ===== */
.main-slider .banner-content {
  width: 100%;
  padding-left: 80px;
}

.banner-content h2.banner-title {
  font-size: 4.2em;
  font-weight: 500;
  line-height: 1.15;
  color: #222;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 1.05em;
  color: #555;
  max-width: 420px;
  margin-bottom: 35px;
}

/* ===== IMAGE AREA ===== */
.slider-image {
  width: 50%;
  display: flex;
  justify-content: center;
}

.slider-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
}

/* subtle animation biar hidup tapi nggak tabrakan */
.slick-active .slider-image img {
  transform: translateY(-6px);
}

/* ===== DOTS ===== */


/* ==================================================
   RESPONSIVE
   ================================================== */

@media screen and (max-width: 1200px) {
  .banner-content h2.banner-title {
    font-size: 3.6em;
  }

  .main-slider .banner-content {
    padding-left: 40px;
  }

  .main-slider .slider-item {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .main-slider .banner-content {
    width: 100%;
    padding: 0 20px;
  }

  .banner-content p {
    margin: auto auto 30px;
  }

  .slider-image {
    width: 100%;
  }

  .slider-image img {
    max-width: 360px;
  }

}

@media screen and (max-width: 576px) {
  .banner-content h2.banner-title {
    font-size: 2.6em;
  }
}


/* ===== Mobile ===== */
@media screen and (max-width: 768px) {
  #client-holder .logo-wrap .grid {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/*----- Featured Books Section
--------------------------------------------------------------*/

#featured-books .product-list {
  border-bottom: 1px solid #974545;
  margin-bottom: 30px;
}

/*----- Best Selling Section Section
--------------------------------------------------------------*/
#best-selling {
  background: #EDEBE4;
  padding: 120px 0;
}

#best-selling .products-thumb {
  margin-right: 60px;
  box-shadow: 2px 6px 34px 4px rgba(63, 63, 63, 0.08);
}

#best-selling .product-entry {
  margin-top: 50px;
}

#best-selling .product-entry h3.item-title {
  font-size: 1.8em;
  font-weight: 100;
  margin-top: 15px;
}

#best-selling .product-entry .item-price {
  font-size: 1.5em;
  color: #74642F;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #best-selling .products-thumb {
    margin: 0;
  }
}

/*----- Popular Books Section
--------------------------------------------------------------*/
.tab-content {
  position: relative;
}

[data-tab-content] {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.active[data-tab-content] {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 55px 0;
  justify-content: center;
  list-style: none;
}

.tabs .tab {
  font-weight: 600;
  color: #999;
  margin-right: 50px;
  cursor: pointer;
}

.tabs .tab.active,
.tabs .tab:hover {
  color: #111;
  border-bottom: 2px solid #9A884C;
}

img.books-image {
  /*height: 290px;*/
  margin-right: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}

/*----- Quotation Section
--------------------------------------------------------------*/
#quotation .section-title.divider,
#quotation .section-title.divider:after {
  margin: 0 auto;
}

#quotation blockquote {
  width: 40%;
  margin: 0 auto;
}

#quotation q {
  display: block;
  font-size: 1.6em;
  padding: 40px 0;
}

#quotation .author-name {
  font-family: "Prata", Georgia, serif;
  font-size: 1.4em;
}

@media screen and (max-width: 768px) {
  #quotation blockquote {
    width: 80%;
  }
}


@media screen and (max-width: 1200px) {
  #subscribe form#form {
    width: 90%;
  }

  #subscribe .subscribe-content input[type="text"] {
    width: 100%;
  }

  #subscribe .btn-subscribe {
    width: 30%;
  }
}

@media screen and (max-width: 980px) {

  /*#subscribe .grid {
      flex-wrap: wrap;
      justify-content: center;
  }*/
  #subscribe .section-title {
    width: 100%;
    margin: 0 auto 50px;
  }

  #subscribe p {
    width: 100%;
    text-align: left;
    margin: 30px auto;
  }

  #subscribe form#form,
  #subscribe .subscribe-content {
    width: 100%;
  }

  #subscribe form#form {
    margin: 0 auto;
  }

  #subscribe .subscribe-content {
    margin-left: 0;
  }

  #subscribe {
    margin-bottom: 90px;
  }

}

/*----- Latest Blog Section
--------------------------------------------------------------*/
#latest-blog {
  background: #F3F2EC;
  padding: 10px 0;
}
/* Card Artikel */
#latest-blog article.column {
  margin-bottom: 60px;
}

/* Gambar Artikel */
#latest-blog figure {
  margin-bottom: 18px;
}
#latest-blog .post-image {
  width: 100%;
  height: 80%;
  object-fit: cover;
  object-position: center;
  /* ⬅️ fokus tengah */
  border-radius: 6px;
}

/* Tanggal */
#latest-blog .meta-date {
  font-family: "Prata", Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #74642F;
  margin-bottom: 10px;
}

/* Judul Artikel */
#latest-blog h3 {
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 10px;
}

#latest-blog h3 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.25s ease;
}

#latest-blog h3 a:hover {
  color: #4CAF50;
  /* hijau elegan */
}

/* Excerpt / Cuplikan Artikel */
#latest-blog .post-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: #343333;
  margin-bottom: 14px;
}

/* Footer kecil artikel (jika masih dipakai) */
#latest-blog .links-element {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
  padding-top: 12px;
  font-size: 12px;
}

/* Kategori (opsional kalau masih dipakai) */
#latest-blog .categories {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  color: #777;
}
#latest-blog .post-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin: 6px 0 14px;


  font-family: "Prata", Georgia, serif;
}
/* bikin kolom sama tinggi */
.article-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}

/* isi konten dipaksa memenuhi tinggi */
.article-card .post-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* dorong bagian bawah (kategori + share) ke bawah */
.article-card .links-element {
  margin-top: auto;
}


/* Responsive */
@media screen and (max-width: 999px) {
  #latest-blog h3 {
    font-size: 1.25em;
  }

  #latest-blog .post-image {
    height: 200px;
  }
}


@media screen and (max-width: 767px) {
  #latest-blog article.column {
    width: 100%;
  }

  #latest-blog .post-image {
    height: 190px;
  }
}
/* Shop page */
.products-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-style {
  position: relative;
  overflow: hidden;
}

.slick-slider .product-style {
  margin: 0 15px 25px;
}

.product-style figcaption p {
  margin-bottom: 20px;
}

.product-style img.product-item {
  position: relative;
  background: #EFEEE8;
  border: 1px solid #EAE8DF;
  padding: 1%;
  cursor: pointer;
  width: 100%;
}

.product-style button.add-to-cart {
  position: absolute;
  background: #000;
  color: #fff;
  width: 100%;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  line-height: 3;
  bottom: 300px;
  bottom: -65px;
  left: 0;
  z-index: 9;
  transition: 0.3s ease-out;
}

.product-style:hover button.add-to-cart {
  bottom: 380px;
  bottom: 0;
}

.product-item figcaption {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.product-item figcaption>h3 {
  font-size: 1.4em;
  font-weight: 500;
  color: #74642F;
  margin: 0;
}
.product-item figcaption>p {
  margin: 0;
}

.product-item .item-price {
  color: #74642F;
  font-size: 1.2em;
  
}
.item-price {
  font-weight: 600;
  margin-top: 6px;
  color: #000;
}

@media screen and (max-width: 768px) {
  .products-grid .product-item {
    width: 45%;
  }

  .product-style img.product-item {
    /*height: 550px;*/
    object-fit: contain;
    margin: 0 auto;
  }

  .products-grid.col-3 .product-style,
  .products-grid.col-4 .product-style,
  .products-grid.col-5 .product-style {
    width: 100%;
  }
}

.katalog-filter {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 20px 0 35px;
}

.katalog-filter a {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: #1f2f3d;
  transition: all .25s ease;
}

.katalog-filter a:hover {
  background: #dbe5ec;
}

.katalog-filter a.active {
  background: #2e7d32;
  color: #fff;
}
.item-actions {
  margin-top: 10px;
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 8px 10px;
  font-size: 16px;
  font-weight: 500;

  background: #2e7d32;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background .25s ease, transform .2s ease;
}

.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}
/* @media screen and (max-width: 575px) {
  .products-grid .product-style {
    width: 100%;
  }
} */

/*article*/

.page-artikel .container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.page-artikel header {
  margin-bottom: 30px;
}

.page-artikel header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-artikel .header-description {
  color: #666;
  font-size: 14px;
  max-width: 800px;
}

.page-artikel .main-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
}
.page-artikel .articles-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-artikel .article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: stretch;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.page-artikel .article-image {
  width: 240px;
  height: 100%;
  position: relative;
}

.page-artikel .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-artikel .esai-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
}

.page-artikel .article-content {
  padding: 16px 24px;
}

.page-artikel .article-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 1.35;
}

.page-artikel .article-meta {
  font-size: 12px;
  color: #666;
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}

.page-artikel .article-author {
  color: #22c55e;
  font-weight: 600;
  text-transform: uppercase;
}

.page-artikel .article-excerpt {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}
.article-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-artikel .read-more {
  display: inline-block;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .5px;

  color: #000000;
  border: 1.5px solid #abb1ad;
  border-radius: 6px;
  background-color: #fff;

  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.15);

  transition: all .25s ease;
}

/* HOVER */
.read-more:hover {
  background-color: #22c55e;
  color: #fff;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
  transform: translateY(-2px);
}

.page-artikel .sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-artikel .sidebar-section {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

.page-artikel .sidebar-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid #22c55e;
  padding-bottom: 10px;
}

@media (max-width: 968px) {
  .page-artikel .main-layout {
    grid-template-columns: 1fr;
  }

  .page-artikel .article-card {
    grid-template-columns: 1fr;
  }

  .page-artikel .article-image {
    width: 100%;
    height: 240px;
  }
}
.popular-article {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.popular-thumbnail {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}
.popular-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.popular-content {
  flex: 1;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}

.popular-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #111;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-title a {
  color: inherit;
  text-decoration: none;
}

.popular-title a:hover {
  text-decoration: underline;
}

.popular-date {
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.popular-article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}

/*artikeldetail8/

.artikel-detail-wrapper {
    background: #f5f5f5;
    padding: 30px 0;
}

.artikel-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* ARTICLE */
.artikel-detail-wrapper .main-article {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

/* CONTENT */
.article-content {
    font-size: 17px;
    line-height: 1.8;
}

.quote-box {
    background: #f5f5f5;
    padding: 25px;
    border-left: 4px solid #22c55e;
    margin: 30px 0;
}

/* SIDEBAR */
.sidebar-section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.popular-article {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.popular-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

/* === Judul Artikel Klik & Hover Hijau === */
.article-title a {
  color: #1a1a1a;
  /* warna awal */
  text-decoration: none;
  transition: color 0.25s ease;
}

.article-title a:hover {
  color: #22c55e;
  font-weight: 600;
}
/*----- Billboard
--------------------------------------------------------------*/
#billboard .main-slider {
  padding: 40px 0;
}


.main-slider .slider-item {
  display: flex;
  width: 100%;
  justify-content: center;
}

.main-slider .banner-content {
  width: 35%;
  margin-top: 60px;
  margin-right: 175px;
}

.banner-content h2.banner-title {
  font-size: 48px;
  font-weight: 500;
  color: #222;
}

.banner-content p {
  margin: 0 0 30px 0;
}

#billboard .slick-dots {
  left: 200px;
  bottom: 110px;
  width: 10%;
  text-align: inherit;
}

#billboard button.slick-arrow {
  background: transparent;
  border: 1px solid #E5E3DA;
  padding: initial;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 5;
  cursor: pointer;
}

#billboard button.slick-arrow:hover {
  border: 1px solid #74642F;
  background-color: #E5E3DA;
}

#billboard button.prev.slick-arrow {
  left: 110px;
}

#billboard button.next.slick-arrow {
  right: 110px;
}

#billboard .slick-arrow i.icon {
  color: #8C8C8C;
}

@media screen and (max-width: 1366px) {
  #billboard button.prev.slick-arrow {
    left: 0;
  }

  #billboard button.next.slick-arrow {
    right: 0;
  }
}
#billboard {
  position: relative;
}

#billboard .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999 !important; /* lebih tinggi dari slide */
  background: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
}

@media screen and (max-width: 999px) {
  .banner-content h2.banner-title {
    font-size: 3.5em;
  }

  .main-slider .slider-item {
    flex-wrap: wrap;
    text-align: center;
    flex-direction: column-reverse;
  }

  .main-slider .banner-content {
    width: 100%;
    margin-top: 60px;
    margin-right: 0;
    margin-bottom: 20px;
  }

}

/* =========================
   MOBILE RESPONSIVE
   ========================= */
@media (max-width: 768px) {

    /* Layout jadi 1 kolom */
    .main-layout {
        grid-template-columns: 1fr;
    }

    /* Artikel jadi vertikal */
    .article-card {
        flex-direction: column;
    }

    .article-image {
        flex: unset;
        width: 100%;
    }

    .article-image img {
        height: 220px;
    }

    .article-title {
        font-size: 18px;
    }

    .article-excerpt {
        font-size: 14px;
    }

    /* Sidebar turun ke bawah */
    .sidebar {
        margin-top: 40px;
    }

    /* Popular article */
    .popular-article {
        display: flex;
        gap: 12px;
        margin-bottom: 15px;
    }

    .popular-thumbnail img {
        width: 80px;
        height: 60px;
        object-fit: cover;
        border-radius: 6px;
    }

    .popular-title {
        font-size: 14px;
    }
}
/* =========================
   MOBILE RESPONSIVE
   ========================= */
@media (max-width: 768px) {

  /* Container jadi 1 kolom */
  .artikel-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Judul diperkecil */
  .article-title {
    font-size: 22px;
  }

  /* Meta stack ke bawah */
  .article-meta {
    flex-direction: row;
    align-items: flex-start;
  }

  .author-avatar {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* Image aman */
  .featured-image {
    margin: 20px 0;
    border-radius: 10px;
  }

  .article-content {
    font-size: 15px;
  }

  /* Sidebar turun ke bawah */
  .sidebar {
    position: static;
    margin-top: 40px;
  }

  .sidebar-header {
    font-size: 18px;
  }
}
.text-logo {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
}

.text-logo span:first-child {
  font-weight: 700;
}

.text-logo span:last-child {
  font-weight: 400;
}
.site-header {
  position: relative;
  z-index: 999;
}
.text-logo {
  display: flex;
  align-items: center;
  /* sejajar vertikal */
  /* jarak logo & teks */
  text-decoration: none;
}

.text-logo img {
  height: 38px;
  /* sesuaikan dengan tinggi header */
  width: auto;
}

.text-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
}

.text-logo span:first-of-type {
  font-weight: 700;
}

.text-logo span:last-of-type {
  font-weight: 400;
}
.site-header {
  font-family: 'Inter', sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #6CA651;
  padding: 1px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-bar.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 142px;
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 500px;
  gap: 16px;
  height: 44px;
  /* 🔑 samakan tinggi bar */
}

.btn-submit {
  background: #22c55e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.social-bukit {
  display: flex;
  gap: 10px;
}

.social-bukit .soc {
  width: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border-radius: 50%;
  font-size: 15px;

  box-shadow: 0 1px 3px rgba(0, 0, 0, .08);

  transition: all .25s ease;
}
.social-bukit .soc:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.25);
}
.social-bukit .ig {
  color: #ffffff;
  background-color: #E1306C;
}

.social-bukit .tw {
  color: #ffffff;
  background-color: #1DA1F2;
}

.social-bukit .fb {
  color: #ffffff;
  background-color: #1877F2;
}

.social-bukit .tt {
  color: #ffffff;
  background-color: #000;
}

.social-bukit .yt {
  color: #ffffff;
  background-color: #FF0000;
}

/* ===== NAV BAR ===== */
/* NAV BAR */
/* ===== MAIN NAV BASE (BELUM SCROLL) ===== */
.main-nav {
  position: relative; /* ⬅️ PENTING */
  width: 100%;
  background: #BBCB2E;
  z-index: 50;

  transition:
    background-color 0.35s ease,
    box-shadow 0.35 ease,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease;
} 
        /* =========================
       NAVBAR SCROLL FIX
    ========================= */
    
        .main-nav .nav-menu {
          display: flex;
          flex-wrap: nowrap;
          gap: 5px;
        }
    
        .main-nav .nav-menu>li {
          flex: 0 0 auto;
        }
    
        /* agar submenu tetap normal */
        .main-nav .nav-menu li ul {
          white-space: normal;
        }

/* ===== SAAT SCROLL ===== */
.main-nav.scrolled {
  position: fixed; /* ⬅️ BARU FIXED */
  top: 0;
  left: 0;
  z-index: 9999;

  background-color: rgba(74, 100, 117, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: #BBCB2E;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
  transform: translateY(0);
  animation: navSlideDown 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 56px;
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}
/* NAV MENU FLEX */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}
.mobile-has-sub {
  list-style: none;
}

.mobile-dropdown-toggle {
  padding: 12px 0;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-submenu {
  display: none;
  padding-left: 15px;
}

.mobile-submenu li {
  padding: 8px 0;
}

.mobile-has-sub.active .mobile-submenu {
  display: block;
}
.mobile-header {
  position: relative;
  z-index: 1000;
}

.mobile-top {
  height: 70px;
  /* sesuaikan tinggi header kamu */
}
/* ITEM JANGAN WRAP */
.nav-menu>li>a {
  white-space: nowrap;
}

/* Jangan kasih width tetap */
.nav-menu>li {
  width: auto;
}

.nav-menu li a {
  color: #6B7445;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 15px;
  display: inline-block;
}

.nav-menu li a:hover {
  color: #ffffff;
}

/* ===== SEARCH ===== */
/* SEARCH */
.nav-search {
  display: flex;
  align-items: center;
  height: 100%;
}


.nav-search form {
  display: flex;
  align-items: center;
  height: 40px;
  gap: 12px;
  
  /* KUNCI */
  padding: 0 10px;
  /* BUKAN 6px */
  margin: 0;
  /* BUNUH DEFAULT */
  background: rgba(255, 255, 255, .15);
  border-radius: 999px;
}

.nav-search input {
  height: 100%;
  padding: 0;
  margin: 0;
  line-height: 1;
  /* KUNCI PALING PENTING */
  background: transparent;
  border: 0;
  outline: 0;
  width: 100px;
  color: #fff;
  font-size: 13px;
}

.nav-search button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  height: 100%;
  background: none;
  border: 0;
  color: #fff;
}
.top-bar .container,
.main-nav .container {
  margin-right: auto;
  margin-left: auto;
}
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
}

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
  z-index: 999;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 10px 14px;
}


/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  /* default: HILANG (desktop) */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  transition: all 0.3s ease;
}
/* ================= MOBILE HEADER ================= */
.mobile-header {
  display: none;
}

@media (max-width: 991px) {

  .mobile-header {
    display: block;
    position: fixed;
    top: 0;
    z-index: 9999;
    background: #0f2a44;
  }
  /* MATIKAN DESKTOP */
  .desktop-header {
    display: none;
  }


  .mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #6CA651;
    padding: 0;
  }

  .mobile-logo img {
    height: 28px;
  }

  .mobile-actions {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .btn-article {
    background: #4ade80;
    color: #0f2a44;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-search {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
  }

  /* MENU SCROLL */
  .mobile-nav {
    overflow-x: auto;
    white-space: nowrap;
    background-color: #BBCB2E;
  }

  .mobile-nav ul {
    display: flex;
    gap: 18px;
    padding: 10px 14px;
    list-style: none;
    margin: 0;
  }

.mobile-nav a {
    color: #6B7445;
    font-size: 14px;
    font-weight: bold;
    /* BOLD */
    text-decoration: none;
  }
  }

  .mobile-nav::-webkit-scrollbar {
    display: none;
  }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;
  border-radius: 6px;
  background: #2e7d32;
  color: #ffffff;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}

.btn-submit img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  /* jadi putih */
}

.btn-submit:hover {
  background: #256528;
}
/* default disembunyikan */
.mobile-search-wrapper {
  display: none;
  padding: 10px;
  background: #954747;
}

/* input */
.mobile-search-wrapper input {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* animasi */
.mobile-search-wrapper.active {
  display: block;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* hanya mobile */
@media (min-width: 768px) {

  .mobile-search,
  .mobile-search-wrapper {
    display: none !important;
  }
}

.mobile-search-form {
  display: none;
  margin-top: 8px;
}

.mobile-search-wrap.active .mobile-search-form {
  display: block;
}
.mobile-search-form input {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
/* ===== MOBILE LOGO ===== */
.mobile-logo a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* gambar logo */
.mobile-logo img {
  height: 68px;
  /* bisa kamu ubah */
  width: auto;
}

/* teks logo umum */
.mobile-logo span {
  font-weight: 800;
  font-size: 16px;
  /* ukuran teks */
  letter-spacing: 0.5px;
  line-height: 1;
  color: #ffffff;
}
/* WRAPPER */
.mobile-search-wrap {
  position: relative;
}

/* BUTTON SEARCH */
.mobile-search-toggle {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* FORM SEARCH (AWALNYA HIDDEN) */
.mobile-search-form {
  position: absolute;
  right: 0;

  width: 430px;
  padding: 10px;

  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all .25s ease;

  z-index: 9999;
}

/* INPUT */
.mobile-search-form .search-input {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* ACTIVE (DITAMPILKAN) */
.mobile-search-wrap.active .mobile-search-form {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MOBILE ONLY */
@media (min-width: 769px) {
  .mobile-search-wrap {
    display: none;
  }
}
@media (max-width: 991px) {

  .mobile-header {
    display: block !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #0f2a44;
  }

  body {
    padding-top: 120px;
  }

}
#google_translate_element {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#google_translate_element select {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #0f2a44;
  font-size: 0; /* sembunyikan teks */
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  transition: all .25s ease;
}

/* Hover effect biar sama kayak sosmed */
#google_translate_element select:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,.2);
}

/* Sembunyikan branding */
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}
/*----- Cient-holder Section
--------------------------------------------------------------*/
#client-holder {
  background: #6CA651;
  padding: 0;
}
#client-holder .grid img {
  opacity: 0.6;
  /* transparansi */
  transition: all 0.3s ease;
  /* animasi halus */
}

 .stats-grid {
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   gap: 30px;
   text-align: center;
 }

 .stat-item img {
   width: 120px;
   margin-bottom: 10px;
 }
.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.stat-item p {
  font-size: 14px;
  color: #d7dbd7;
  font-weight: 500;
  margin-top: 3px;
}
.stat-item {
  transition: all .3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}
/* Saat hover jadi normal */
#client-holder .grid img:hover {
  opacity: 1;
}
#client-holder .logo-wrap {
  max-width: 1000px;
  margin: auto;
}

/* Grid layout */
#client-holder .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

#client-holder .grid img {
  width: 130px !important;
  height: 200px !important;
  max-width: none !important;
  object-fit: contain !important;
}
#billboard {
    padding: 0px 0;
}

.slider-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.banner-image-wrapper {
    position: relative;
}

.banner-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* Gradient biar teks kebaca */
.banner-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
    border-radius: 10px;
}

.banner-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    max-width: 600px;
    z-index: 2;
}

.banner-title {
    font-size: 40px;
    margin: 15px 0;
    color: #ffffff;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    font-size: 12px;
    text-transform: uppercase;
}

.redaksi {
    background: #2e7d32;
}

.btn-next {
    display: inline-block;
    padding: 10px 20px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-next:hover {
    background: #ddd;
}
.main-slider .slick-slide {
  padding: 0 12px;
}

.main-slider .slick-list {
  margin: 0 -12px;
}
.main-slider .slick-slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.6;
  transform: scale(0.92);
}

.main-slider .slick-center {
  opacity: 1;
  transform: scale(1);
}
#kampanye-slider {
  padding: 0px 0;
}

.kampanye-item {
  position: relative;
  padding: 0 15px;
  /* ini bikin gap antar card */
}

.kampanye-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
}

/* overlay tipis */
.kampanye-item::after {
  content: "";
  position: absolute;
  inset: 0 15px 0 15px;
  border-radius: 15px;
}

.label {
  position: absolute;
  bottom: 20px;
  right: 35px;
  background: #2e7d32;
  color: white;
  padding: 6px 15px;
  font-weight: bold;
  z-index: 2;
}
.kampanye-wrapper .slick-slide {
  user-select: none;
}

.kampanye-wrapper img {
  pointer-events: none;
  /* supaya drag lebih halus */
}
.slide-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
}

.slide-link:hover {
  color: #fff;
}

/* Pastikan overlay tetap absolute */
.banner-image-wrapper {
  position: relative;
}

.banner-content-center {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 80%;
  z-index: 2;
}

/* tombol style */
/* Wrapper utama */
.text-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.logo-row{
    display:flex;
    align-items:center;
    gap:0;
}

.logo-row img{
    display:block;
}

/* Image */
.logo-row img {
  max-height: 255px;
}
.logo-row img.logo-berfiksi{
    width:auto;
    height:150px;
}
    .logo-berfiksi{
    width:520px;   /* bebas atur ukuran */
    height:auto;

}
.logo-berfiksi{
    height:35px;
    transform: scale(1.4);
    transform-origin: left center;
}
.logo-berfiksi{
    width:100px;
    margin-left:450px;
}
.logo-bukit{
    width:100px;
}
/* BUKITBUKU */
.logo-main {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1;
}

/* Tagline */
.logo-tagline {
  margin-left: 25px;
  /* sejajarkan dengan tulisan, bukan gambar */
  margin-top: 4px;
  font-size: 13px;
  color: #aaffae;
  font-style: italic;
  letter-spacing: 1px;
}
#news-section {
  padding: 0 0;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}

.news-header h2 {
  font-size: 26px;
  font-weight: 700;
}

.red-bar {
  display: inline-block;
  width: 6px;
  height: 22px;
  background: #e60023;
  margin-right: 10px;
}
.green-bar {
  display: inline-block;
  width: 6px;
  height: 22px;
  background: #2e7d32;
  margin-right: 10px;
}

.lihat-lainnya {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

/* BIG NEWS */
.big-news {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.big-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
}

.big-news .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
}

.big-news h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.big-news .meta {
  font-size: 14px;
  opacity: 0.8;
}

/* RIGHT LIST WRAPPER */
.news-list {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 12px;
  max-height: 450px;
  overflow-y: auto;
}

/* ITEM */
.news-item {
  display: flex;
  align-items: center;
  /* bikin sejajar tengah */
  gap: 12px;
  /* jarak teks & gambar */
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.news-item:last-child {
  border-bottom: none;
}

/* TEXT AREA */
.news-item .text {
  flex: 1;
  /* teks ambil sisa ruang */
}

.news-item p {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
  /* padat */
  line-height: 1.3;
}

.news-item span {
  font-size: 12px;
  color: #777;
}

/* IMAGE */
.news-item img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  /* biar gak mengecil */
}
/* Biar trending & terbaru bisa scroll */
.news-list {
  max-height: 520px;
  /* atur sesuai kebutuhan */
  overflow-y: auto;
  padding-right: 5px;
  /* biar ga nabrak scrollbar */
}

/* Biar scrollnya lebih halus & rapi */
.news-list::-webkit-scrollbar {
  width: 6px;
}

.news-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.news-list::-webkit-scrollbar-thumb:hover {
  background: #999;
}
/* ========================= */
/* MOBILE CLEAN RESET */
/* ========================= */
@media (max-width: 768px) {

  /* Reset grid total */
  .news-grid {
    display: block !important;
  }

  .big-news {
    margin-bottom: 20px;
  }

  .news-list {
    max-height: none;
    overflow: visible;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
  }

  .news-list h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  /* RESET FLEX DARI DESKTOP */
  .news-item {
    display: block !important;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  /* FLEX YANG BENAR ADA DI A */
  .news-item>a {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    text-decoration: none;
    color: inherit;
  }

  .news-item:last-child {
    border-bottom: none;
  }

  .news-item img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .news-item .text {
    flex: 1;
  }

  .news-item .text p {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
  }

  .news-item .text span {
    font-size: 12px;
    color: #888;
  }

  .lihat-lainnya {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #007bff;
  }

}
/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

/* LIST COLUMN */
.news-list {
  width: 100%;
}

/* ITEM */
.news-item {
  width: 100%;
  margin-bottom: 15px;
}

/* LINK FLEX */
.news-item a {
  display: flex;
  align-items: flex-start;
  /* ubah dari center ke flex-start */
  width: 100%;
  text-decoration: none;
  color: inherit;
}

/* TEXT FULL SPACE */
.news-item .text {
  flex: 1;
  margin-right: 15px;
}

/* IMAGE FIXED RIGHT */
.news-item img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 3px;
  /* opsional biar sejajar dengan judul */
}
.container {
  max-width: 1499px;
  margin: auto;
}
/* FIX pagination svg Laravel */
.pagination svg{
    width:16px !important;
    height:16px !important;
}

.inline-flex svg{
    width:16px !important;
    height:16px !important;
}
/* BILLBOARD FULLSCREEN */

#billboard {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* TEXT */

.banner-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
}

.banner-content h2 {
  font-size: 40px;
  font-weight: 700;
}

/* DOT */

.indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.active {
  background: white;
}
/* BILLBOARD */

#billboard {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

/* SLIDE */

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* IMAGE */

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY GRADIENT */

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0));
}

/* TEXT AREA */

.slide-content {
  position: absolute;
  bottom: 80px;
  left: 50px;
  max-width: 900px;
  color: white;
  z-index: 2;
}

/* CATEGORY */

.slide-category {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* TITLE */

.slide-title {
  font-weight: 700;
  line-height: 1.1;
  margin: 10px 0;
}

.slide-title a {
  font-size: 42px;
  color: white;
  text-decoration: none;
}

/* META */

.slide-meta {
  font-size: 16px;
  opacity: 0.9;
}

/* DOT */

.indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.active {
  background: white;
}
        .program-title {
          text-align: center;
        }
    
        .program-title h2 {
          font-size: 32px;
          font-weight: 700;
        }
    
        .title-line {
          width: 60px;
          height: 3px;
          background: #BBCB2E;
          /* bisa diganti warna brand */
          margin: 10px auto 0;
          border-radius: 2px;
        }
        @media (min-width: 992px){
    .subscribe-box{
        display:none;
    }
}
        