/* 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: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #151515; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #2e8b57; /* 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. */
}

body {
    background-image: url('https://img.freepik.com/free-photo/view-spectacular-nature-landscape_23-2150763626.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #2d3e50;
    
}

body::-webkit-scrollbar {
    display: hidden; !important; /* Untuk Chrome, Safari, dan Opera */
}

.gallery-item { transition: transform 0.3s ease; }
.gallery-item:hover { transform: scale(1.02); z-index: 10; }

p {
  font-size: 13px;
  color: #7a7a7a;
  line-height: 24px;
}
.splash{
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: white;
  height: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.splash img {
  max-width: 200px;
  animation: bounce 3s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.page-content {
    background-color: transparent;
}
.content-section {
  padding-top: 80px;
  position: relative;
  width: 100%;
  display: inline-block;
  height: auto;
  left: 50%;
  text-align: center;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.section-heading {
  text-align: center;
  margin-right: 0;
  margin-bottom: 60px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.section-heading em {
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
}
.section-heading p {
    margin-top: 35px !important;
    max-width: 700px !important;      /* batasi lebar paragraf */
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 16px;       /* lebih nyaman dibaca */
    line-height: 1.7 !important;      /* spasi antarbaris lebih lega */
    color: #ffffff;
    text-align: center;
}
.card-body p,
.Modern-Slider .info p {
    color: #f0f8f5 !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    line-height: 1.7;
    font-size: 16px !important;
}
.white-button a {
  font-size: 13px;
  font-weight: 700;
  color: #45489a;
  text-transform: capitalize;
  background-color: #fff;
  display: inline-block;
  height: 44px;
  line-height: 44px;
  padding: 0px 25px;
  letter-spacing: 0.25px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.white-button a:hover {
    background: #52b788;
    color: #fff !important;
}
.accent-button a {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  background-color: #45489a;
  display: inline-block;
  height: 44px;
  line-height: 44px;
  padding: 0px 25px;
  letter-spacing: 0.25px;
  text-decoration: none;
  transition: all 0.3s;
}
.accent-button a:hover {
  background-color: #fff;
  color: #45489a;
}
header {
    position: fixed;
    top: 0;
    transition: top 0.3s ease-in-out;
    width: 100%;
}
header .header-logo{
  color: white;
  position: absolute;
  left: 3%;
  display: flex;
}
header .header-logo h3{
  font-weight: 700;
  margin-top: .7em;
}
header .header-logo em{
  font-style: normal;
  font-weight: 300;
}
header .header-logo .image{
  height: 60px;
  display: flex;
  float: left;
  padding-right: 10px;
  padding: 6px;
}
header .header-logo .image img{
  height: 100%;
  background: #eeffe7;
  border-radius: 10%;
}
.nav-up {
    top: -75px;
}

.section-heading h1,
.section-heading h3,
.section-heading h4,
.card-body h4,
.Modern-Slider .info h1,
.featured-card h4 {
    color: #ffffff !important;
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); */
    letter-spacing: 0.5px;
}

.Modern-Slider .info h1 {
    font-size: 56px;
    font-weight: 800;
}
.Modern-Slider .info p {
    font-size: 18px;
    margin-bottom: 30px;
}
/* Responsive Navigation */
.responsive-nav {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 80px;
  background-color: rgba(250,250,250,.95);
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}
.navbar-toggle {
  position: absolute;
  top: 40%;
  left: 50%;
  display: inline-block;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.navbar-nav {
  margin: 0;
  border: none;
}
#main-nav ul {
  text-align: center;
  background-color: rgba(0,0,0,0.9);
  margin-top: 59px;
  width: 100%;
}
#main-nav ul li {
  margin: 15px 0px;
}
#main-nav ul li:hover {
  background-color: transparent;
}
#main-nav ul li a {
  font-size: 15px;
  text-transform: capitalize;
  color: #fff;
  box-shadow: none;
  border: none;
}
#main-nav ul li a:hover {
  opacity: 0.5;
  background-color: transparent;
}
.navbar-toggle span {
  background-color: #FFFFFF;
}
/* TopBar Style */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(12, 22, 12, 0.55);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid rgba(82, 183, 136, 0.25);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    transition: top 0.3s ease-in-out;
}
.main-header.header-hidden {
    top: -110px;
}
.main-header.scrolled {
    background: rgba(8, 18, 8, 0.88);
    padding: 6px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 48px;
    max-width: 1600px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
}
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
.logo-circle {
    width: 90px;
    height: 90px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: 0;
}

.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.logo-wrapper:hover .logo-circle {
    transform: scale(1.05);
    box-shadow: none;
}
.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    text-align: center;
    line-height: 1.2;
}
.logo-text em {
    font-style: normal;
    font-weight: 300;
    color: #a8e6cf;
    font-size: 18px;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* Desktop saja */
@media (min-width: 993px) {
    .main-nav ul {
        display: flex;
        gap: 32px;
    }
}
.nav-link {
    position: relative;
    color: #c8e6c9;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 4px;
    text-decoration: none;
    transition: color 0.35s ease;
    overflow: hidden;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #52b788;
    box-shadow: 0 0 10px #52b788, 0 0 20px #52b788;
    transition: all 0.4s ease;
}
.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(82, 183, 136, 0.75);
}
.nav-link:hover::after {
    width: 100%;
    left: 0;
}
.nav-link:active {
    color: #ffffff;
    transform: scale(0.96);
    text-shadow: 0 0 8px rgba(82, 183, 136, 1);
}
.nav-link:active::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    background: rgba(82, 183, 136, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: linkPulse 0.45s ease-out;
}
@keyframes linkPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(18);
        opacity: 0;
    }
}
.nav-link.active {
    color: #ffffff;
}
.nav-link.active::after {
    width: 100%;
    left: 0;
    background: #7fffd4;
    box-shadow: 0 0 12px #7fffd4, 0 0 24px #7fffd4;
}
.social-top {
    display: flex;
    align-items: center;
    gap: 14px;
}
.social-top a {
    color: #c8f5d5;
    font-size: 19px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(82, 183, 136, 0.18);
    border: 1px solid rgba(82, 183, 136, 0.3);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.social-top a:hover {
    background: #52b788;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(82, 183, 136, 0.50);
}
.page-content {
    padding-top: 120px;
}
/* Hamburger Menu - Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.4s ease;
  padding: 8px;
  border-radius: 50%;
  background: rgba(82, 183, 136, 0.25);
  border: 1px solid rgba(82, 183, 136, 0.4);
  backdrop-filter: blur(10px);
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: #a8e6cf;
  margin: 3px 0;
  border-radius: 3px;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(82, 183, 136, 0.8);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.hamburger:hover {
  background: rgba(82, 183, 136, 0.4);
  transform: scale(1.05);
}
/* Slider Style */
.slider .content-section {
  padding-top: 0px;
  min-width: 100%;
  min-height: 100vh;
  width: 100%;
  height: 100vh;
  text-align: center;
}
.slider p a {
color: #FFF;
}
.slider p a:hover {
color: #FF0;
text-decoration: none;
}
.Modern-Slider .info {
  text-align: right;
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 90px;
  max-width: 600px;
  padding: 0 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
}

.Modern-Slider .info h1 {
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 48px;
  color: #fff;
  font-weight: 700;
}
.Modern-Slider .info p {
  font-size: 15px;
  color: #fff;
}
.Modern-Slider .info .white-button {
  margin-top: 30px;
}
.Modern-Slider .info .white-button a:focus {
  outline: none;
}
.Modern-Slider .slick-dots {
  opacity: 0;
}
.Modern-Slider .NextArrow{
  outline: none;
  display: none;
  position:absolute;
  top:60px;
  right:60px;
  width:50px;
  height:50px;
  background:rgba(0,0,0,.50);
  border:0 none;
  margin-top:-22.5px;
  text-align:center;
  font:32px/50px FontAwesome;
  color:#FFF;
  z-index:5;
}
.Modern-Slider .NextArrow:before{content:'\f105';}
.Modern-Slider .PrevArrow{
  outline: none;
  position:absolute;
  top:60px;
  right: 120px;
  width:50px;
  height:50px;
  background:rgba(0,0,0,.50);
  border:0 none;
  margin-top:-22.5px;
  text-align:center;
  font:32px/50px FontAwesome;
  color:#FFF;
  z-index:5;
}
.Modern-Slider .item .image {
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  display: block;
}

.Modern-Slider .item .img-fill::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background: linear-gradient(to top, rgba(45, 62, 80, 1), transparent);
    z-index: 1;
    pointer-events: none;
}
.Modern-Slider .item-1 .image {
  background-image: url(../img/slide_1.webp);
}
.Modern-Slider .item-2 .image {
  background-image: url(../img/slide_2.webp);
}
.Modern-Slider .item-3 .image {
  background-image: url(../img/slide_3.webp);
}
.Modern-Slider .PrevArrow:before{content:'\f104';}
.Modern-Slider .item .image {
  animation: zoomin 12s ease-in-out infinite alternate;
  -webkit-animation: zoomin 12s ease-in-out infinite alternate;
}
@keyframes zoomin {
    0% {-webkit-transform: scale(1);}
    100% {-webkit-transform: scale(1.2);}
}
.Modern-Slider {background:transparent;}
/* ==== Slick Slider Css Ruls === */
.slick-slider{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}
.slick-list:focus{outline:none}.slick-list.dragging{cursor:hand}
.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
.slick-track{position:relative;top:0;left:0;display:block}
.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}
.slick-loading .slick-track{visibility:hidden}
.slick-slide{display:none;float:left /* If RTL Make This Right */ ;height:100%;min-height:1px}
.slick-slide.dragging img{pointer-events:none}
.slick-initialized .slick-slide{display:block}
.slick-loading .slick-slide{visibility:hidden}
.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}
/* Featured Style */
#featured {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
#featured .section-content {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 15px;
}

#featured .section-heading p {
    text-align: left;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}



.lb-number {
    display: none !important;
}


/* ========== FEATURED SLIDER STYLING ========== */

.featured-slider .featured-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 1.5s ease;
    margin: 10px;
}

.featured-card:hover {
    transform: translateY(-8px);
}

.featured-card .image-container {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.featured-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.featured-card:hover img {
    transform: scale(1.1);
}

.featured-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
}

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

.btn-view {
    padding: 10px 25px;
    background: #fff;
    color: #000;
    border-radius: 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-view:hover {
    background: #006917;
    color: #fff;
}

.card-body {
    padding: 25px;
}

.card-body h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
}

.card-body .divider {
    width: 50px;
    height: 4px;
    background: #52b788;
    border-radius: 3px;
    margin-bottom: 15px;
}

.card-body p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    text-align: left;
}

/* Dots Owl Carousel */
.owl-dots {
    margin-top: 20px;
}

.owl-dot span {
    width: 12px;
    height: 12px;
    background: #bbb !important;
    border-radius: 50%;
}

.owl-dot.active span {
    background: #006917 !important;
}

/* === TEXT STYLING FOR FEATURED CARD === */
.featured-card .card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.featured-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000 !important;       /* pastikan tidak ketimpa CSS lain */
    text-shadow: none !important; /* hilangkan shadow dari template lama */
}

.featured-card .divider {
    width: 55px;
    height: 4px;
    background: #52b788;
    border-radius: 3px;
    margin-bottom: 15px;
}

.featured-card p {
    font-size: 15px;
    line-height: 1.55;
    color: #333 !important;
    text-shadow: none !important;
    margin: 0;
    text-align: left;

    /* === BATASI MAKSIMAL 4 BARIS === */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Owl Carousel Navigation Dots */
#featured .owl-dots {
  margin-top: 40px;
  text-align: center;
}
#featured .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #e0e0e0;
  margin: 0 5px;
  transition: all 0.3s;
}
#featured .owl-dots .active span {
  width: 25px;
  border-radius: 5px;
  background: #45489a;
}
#featured .owl-nav {
  display: none;
}

/* Projects Style */
#projects {
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 50px;
}

#projects .section-heading p {
    text-align: justify !important; /* Memaksa rata kiri */
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px; /* Tambahan padding agar tidak terlalu mepet pinggir layar HP */
}
#projects .masonry {
  position: relative;
  width: 100%;
}
#projects .masonry .item img {
  transition: all 1s;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}
#projects .masonry .item img:hover {
  opacity: 0.5;
}
/* Video Presentation Style */
#about {
    background-color: transparent !important;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 15px;
    padding-right: 15px;
}

.about-glass-card {
    background: rgba(12, 22, 12, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(82, 183, 136, 0.3);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}
.about-text-content {
    padding-left: 30px;
    text-align: left;
}

.section-heading.text-left {
    text-align: left !important;
    margin-bottom: 30px;
    padding: 0;
}

.about-title {
    font-size: 36px !important;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.about-title em {
    color: #52b788 !important;
    font-style: normal;
}
.about-subtitle {
    font-size: 18px !important;
    font-weight: 600;
    color: #a8e6cf !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 10px;
}
.divider-green {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #52b788, transparent);
    margin-bottom: 25px;
    border-radius: 2px;
}
.about-text-content p {
    font-size: 15px !important;
    color: #e0e0e0 !important;
    line-height: 1.8 !important;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 300;
    text-shadow: none;
}
@media (max-width: 991px) {
    .about-text-content {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }
    .section-heading.text-left {
        text-align: center !important;
    }
    .about-text-content p {
        text-align: justify;
    }
    .divider-green {
        margin: 0 auto 25px auto;
    }
}
.box-video{
  width: 100%;
  position: relative;
  margin-top: 30px;
  cursor: pointer;
  overflow: hidden;
}
.box-video .bg-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
}
.box-video .video-container{
  position: relative;
  margin: 0;
  z-index: 1;
}
.box-video .bt-play {
  position: absolute;
  top:50%;
  left:50%;
  margin:-30px 0 0 -30px;
  display: inline-block;
  width: 60px;
  height: 60px;
  background:#fff;
  border-radius: 50%;
  text-indent: -999em;
  cursor: pointer;
  z-index:2;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.box-video .bt-play:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  height: 0;
  width: 0;
  margin: -12px 0 0 -6px;
  border: solid transparent;
  border-left-color: #000;
  border-width: 12px 20px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.box-video:hover .bt-play {
  transform: scale(1.1);
}
.box-video.open .bg-video{
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .6s .8s;
  transition: all .6s .8s;
}
.box-video.open .video-container{
  opacity: 1;
  -webkit-transition: all .6s .8s;
  transition: all .6s .8s;
}
/* Blog Style */
#blog {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 80px;
    padding-top: 80px;
}

.contact-glass-card {
    background: rgba(12, 22, 12, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(82, 183, 136, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    margin-top: 30px;
}

.contact-glass-card:hover {
    border-color: rgba(82, 183, 136, 0.6);
}

.form-group {
    margin-bottom: 25px;
}

.contact-glass-card label {
    font-size: 14px;
    font-weight: 600;
    color: #a8e6cf;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    text-align: left;
}

.glass-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    color: #fff !important;
    height: 50px;
    font-size: 15px;
    padding-left: 20px !important;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

textarea.glass-input {
    height: auto;
    padding-top: 15px;
    min-height: 150px;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #52b788 !important;
    box-shadow: 0 0 15px rgba(82, 183, 136, 0.3), inset 0 2px 4px rgba(0,0,0,0.2) !important;
    outline: none;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.glass-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    border: none;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #45489a 0%, #52b788 100%);
    box-shadow: 0 10px 20px rgba(69, 72, 154, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    margin-top: 10px;
}

.glass-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(82, 183, 136, 0.4);
    background: linear-gradient(135deg, #52b788 0%, #45489a 100%);
    color: #fff;
}
@media (max-width: 767px) {
    .contact-glass-card {
        padding: 30px 20px;
    }
}

/* Footer Style */

.footer {
    background: #000000; /* Hitam pekat */
    color: #ffffff;      /* Semua teks putih */
    text-align: center;
    padding: 24px 16px;
    font-family: Arial, sans-serif;
}

.footer .footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer .title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff !important;
}

.footer .label {
    font-size: 16px;
    margin-bottom: 6px;
}

.footer p {
    margin: 6px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff !important;
}

/* Link putih */
.footer a,
.footer a:visited,
.footer a:active {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.footer strong {
    font-weight: bold;
}

/* Responsif: sedikit pangkas padding di mobile */
@media (max-width: 576px) {
    .footer {
        padding: 22px 14px;
        padding-bottom: 88px; /* tetap beri ruang untuk tombol WA */
    }
}

/*.footer {*/
/*  background-color: rgba(12,12,12,0.9);*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  text-align: center;*/
/*  width: 100%;*/
/*  padding: 24px 16px;*/
/*  box-sizing: border-box;*/
/*}*/

/*!* Batasi lebar teks biar tidak terlalu panjang *!*/
/*.footer .footer-content {*/
/*    max-width: 900px;*/
/*    margin: 0 auto;*/
/*}*/

/*!* Paragraf di footer *!*/
/*.footer p {*/
/*    margin: 4px 0;               !* jarak antar baris kecil *!*/
/*    font-size: 14px;*/
/*    line-height: 1.5;            !* kurangi line height *!*/
/*    color: #fff;*/
/*    letter-spacing: 0.3px;*/
/*    font-weight: 300;*/
/*}*/
/*.footer p a {*/
/*  text-decoration: none;*/
/*  color: #fff;*/
/*  font-weight: 600;*/
/*}*/
/*!* Responsive Style *!*/
/*@media (max-width: 992px) {*/
/*  .responsive-nav {*/
/*    display: none;*/
/*  }*/
/*  .sidebar-navigation .logo a {*/
/*    font-size: 18px;*/
/*  }*/
/*  .sidebar-navigation nav a {*/
/*    font-size: 13px;*/
/*  }*/
/*  .sidebar-navigation nav ul {*/
/*    margin-left: 30px;*/
/*  }*/
/*  .sidebar-navigation .social-icons li a {*/
/*    font-size: 15px;*/
/*  }*/
/*}*/
/*@media (max-width: 767px) {*/
/*  .responsive-nav {*/
/*    display: block;*/
/*    height: 60px;*/
/*  }*/
/*  .page-content {*/
/*    width: 100%;*/
/*  }*/

  /*.Modern-Slider .info {*/
  /*  text-align: center;*/
  /*  right: 0px;*/
  /*  padding: 0px 30px;*/
  /*}*/
  .Modern-Slider .NextArrow{
    outline: none;
    display: none;
    position:absolute;
    top:50%;
    right: 13%;
    transform: translateX(50%);
    margin-right: -30px;
    width:50px;
    height:50px;
    background:none;
    border:0 none;
    text-align:center;
    font:32px/50px FontAwesome;
    color:#FFF;
    z-index:5;
  }
  .Modern-Slider .NextArrow:before{content:'\f105';}
  .Modern-Slider .PrevArrow{
    outline: none;
    position:absolute;
    top:50%;
    left: 13%;
    transform: translateX(-50%);
    margin-left: -30px;
    width:50px;
    height:50px;
    background:none;
    border:0 none;
    text-align:center;
    font:32px/50px FontAwesome;
    color:#FFF;
    z-index:5;
  }
  #featured .owl-nav {
    display: none;
  }

@media (max-width: 690px) {
  .section-heading p {
    position: relative;
  }
  #featured {
    padding-left: 15px;
    padding-right: 15px;
  }
  #featured .owl-nav {
    display: none;
  }
  #projects {
    padding-left: 15px;
    padding-right: 15px;
  }

  #about {
    padding-left: 15px;
    padding-right: 15px;
  }
  #blog {
    padding-left: 15px;
    padding-right: 15px;
  }
  #blog .tabs a {
    font-size: 13px;
  }
  #blog .tabgroup ul li img {
    float: none;
    width: 100%;
    margin-bottom: 15px;
  }
  #blog .tabgroup ul li .text-content {
    display: block;
  }
  #contact-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* Mobile ≤992px */
@media (max-width: 992px) {

  .hamburger {
    display: flex !important;
    z-index: 1001;
  }
  .logo-text {
    display: none !important;
  }
  .main-nav,
  .social-top {
    display: flex;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    width: 100%;
    left: 0;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  }
  .main-nav.active {
    visibility: visible;
    opacity: 1;
    top: 0;
    height: 100vh;
    background: linear-gradient(135deg, rgba(8,18,8,0.98), rgba(12,28,12,0.95));
    backdrop-filter: blur(15px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .main-nav.active ul {
    flex-direction: column;
    padding: 0;
    gap: 30px;
    text-align: center;
  }
  .main-nav.active .nav-link {
    font-size: 28px;
    font-weight: 700;
    color: #c8f5d5;
    display: block;
  }
  .social-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 40px;
    top: auto;
    justify-content: center;
    z-index: 1000;
    gap: 20px;
  }
  .social-top.active a {
    width: 50px;
    height: 50px;
    font-size: 24px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(82, 183, 136, 0.5);
  }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 18, 12, 0.52);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
    pointer-events: none;
}
.page-content,
.slider,
.content-section,
section {
    position: relative;
    z-index: 1;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #1d1d1d !important;
    opacity: 0.95;
    border-bottom: 1px solid rgba(82, 183, 136, 0.25);
}

.contact-glass-card {
    background: rgba(12, 22, 12, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(82, 183, 136, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.contact-glass-card:hover {
    border-color: rgba(82, 183, 136, 0.6);
}

.contact-glass-card label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
}

.glass-input {
    background: rgba(255, 255, 255, 0.05) !important; /* Sangat transparan */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    color: #fff !important; /* Teks putih saat mengetik */
    height: 50px;
    font-size: 15px;
    padding-left: 20px !important;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

textarea.glass-input {
    height: auto;
    padding-top: 15px;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #52b788 !important;
    box-shadow: 0 0 15px rgba(82, 183, 136, 0.3), inset 0 2px 4px rgba(0,0,0,0.2) !important;
    outline: none;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.glass-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    border: none;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #45489a 0%, #52b788 100%);
    box-shadow: 0 10px 20px rgba(69, 72, 154, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    margin-top: 10px;
}

.glass-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(82, 183, 136, 0.4);
    background: linear-gradient(135deg, #52b788 0%, #45489a 100%);
    color: #fff;
}

.glass-btn:active {
    transform: translateY(1px);
}
@media (max-width: 767px) {
    .contact-glass-card {
        padding: 30px 20px;
    }
}


#projects {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 50px;
}

.project-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    height: 100%;
    background: #fff;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.project-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}


/* ============================================================
   FINAL MOSAIC GALLERY (DIBUAT KHUSUS UNTUK SAHABAT)
   ============================================================ */
.mosaic-wrapper {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 15px;
    margin: 30px 0;
    width: 100%;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px;
}

/* LOGIKA AGAR TEGAK/HORIZONTAL/BESAR */
.mosaic-item.tall {
    grid-row: span 2 !important; /* Membuat Kakatua berdiri tegak */
}

.mosaic-item.wide {
    grid-column: span 2 !important; /* Membuat gambar melebar */
}

.mosaic-item.big {
    grid-column: span 2 !important;
    grid-row: span 2 !important; /* Kotak besar 2x2 */
}

/* PENGATURAN GAMBAR AGAR TIDAK GEPENG */
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Kunci agar proporsi hewan tetap asli */
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mosaic-item:hover img {
    transform: scale(1.08); /* Efek zoom halus */
}

/* RESPONSIVE: Agar di HP tetap rapi */
@media (max-width: 768px) {
    .mosaic-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}
@media (max-width: 480px) {
    .mosaic-wrapper {
        grid-template-columns: 1fr;
    }
}


/* Container link sosmed/email */
.contact-links-only {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;         /* supaya rapi di layar kecil */
    margin-top: 12px;
}

/* Item link */
.contact-links-only .link-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;    /* pill */
    color: #f1f5f9;          /* terang */
    text-decoration: none;
    backdrop-filter: blur(8px);
    background: rgba(15, 23, 42, 0.35); /* slate-900 glass */
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

/* Ikon */
.contact-links-only .link-item i {
    font-size: 20px;
    line-height: 1;
}

/* Teks */
.contact-links-only .link-item span {
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Hover/focus */
.contact-links-only .link-item:hover,
.contact-links-only .link-item:focus-visible {
    transform: translateY(-2px);
    background: rgba(30, 41, 59, 0.55); /* sedikit lebih gelap */
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
    outline: none;
}

/* Variasi warna ikon per brand (opsional) */
.contact-links-only .link-item .bi-instagram { color: #E1306C; } /* Instagram pink */
.contact-links-only .link-item .bi-envelope { color: #38bdf8; }  /* Azure-ish */
.contact-links-only .link-item .bi-tiktok   { color: #25F4EE; }  /* TikTok cyan */

/* Responsif: perkecil padding di layar kecil */
@media (max-width: 576px) {
    .contact-links-only .link-item {
        padding: 8px 12px;
    }
    .contact-links-only .link-item i {
        font-size: 18px;
    }
}

.contact-links-only .link-item {
    background: rgba(2, 6, 23, 0.50); /* lebih pekat */
}


/* Tombol mengambang WhatsApp */

.whatsapp-float {

    position: fixed;
    right: 20px;
    bottom: 64px;    /* kamu sudah set, bagus */
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: #22c55e;
    z-index: 1050;
}

/* Isi tombol: dua ikon untuk efek flip ringan */
.whatsapp-float .icon-flipper {
    position: relative;
    width: 24px;
    height: 24px;
}

.whatsapp-float .icon-front,
.whatsapp-float .icon-back {
    position: absolute;
    inset: 0;
    font-size: 24px;
    line-height: 1;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.whatsapp-float .icon-front { opacity: 1; transform: translateY(0); }
.whatsapp-float .icon-back  { opacity: 0; transform: translateY(6px) scale(0.92); }

/* Hover: sedikit bounce dan swap ikon */
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: #16a34a; /* green-600 */
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(34, 197, 94, 0.55), 0 4px 10px rgba(0,0,0,0.3);
    outline: none;
}

.whatsapp-float:hover .icon-front,
.whatsapp-float:focus-visible .icon-front {
    opacity: 0;
    transform: translateY(-6px) scale(0.92);
}

.whatsapp-float:hover .icon-back,
.whatsapp-float:focus-visible .icon-back {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* Responsif: aman dari area gesture */
@media (max-width: 576px) {
    .whatsapp-float {
        right: 16px;
        bottom: 64px;       /* tetap 64 agar tidak menabrak footer mobile */
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 12px;
    }
    .footer p {
        font-size: 13px;
        line-height: 1.4;
        margin: 3px 0;
    }
}
