/* =========================================
   LIBRE BASKERVILLE
========================================= */

@font-face {

    font-family: 'Cormorant Garamond';

    src:
    url('../fonts/Poppins-Regular.ttf')
    format('truetype');

    font-weight: 400;
}

@font-face {

    font-family: 'Cormorant Garamond';

    src:
    url('../fonts/Poppins-Italic.ttf')
    format('truetype');

    font-weight: 700;
}

/* =========================================
   POPPINS
========================================= */

@font-face {

    font-family: 'Poppins';

    src:
    url('../fonts/Poppins-Regular.ttf')
    format('truetype');

    font-weight: 400;

    font-style: normal;
}

@font-face {

    font-family: 'Poppins';

    src:
    url('../fonts/Poppins-Medium.ttf')
    format('truetype');

    font-weight: 500;

    font-style: normal;
}

@font-face {

    font-family: 'Poppins';

    src:
    url('../fonts/Poppins-SemiBold.ttf')
    format('truetype');

    font-weight: 600;

    font-style: normal;
}

/********** Template CSS **********/

:root {
    --bs-primary: #C8A96B;
    --bs-light: #F8F5EF;
    --bs-secondary: #EFE7DA;
    --bs-dark: #2B2B2B;
    --bs-white: #FFFFFF;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

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

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}


/*** Navbar ***/
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    transition: .4s ease;

    background: transparent !important;
    backdrop-filter: none !important;

    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

.navbar.bg-dark {
    background: rgba(20,20,20,.96) !important;
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 16px 0;
    color: var(--bs-white);
    font-size: 17px;
    text-transform: capitalize;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: linear-gradient(rgba(20,20,20,.65),rgba(20,20,20,.65));
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: block;
    text-transform: capitalize;
    overflow: hidden;
    width: 100%;
}

.title {
    text-align:center;
}

.title .title-center h1{
    display:inline-block;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid var(--bs-primary);
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid var(--bs-primary);
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3rem solid rgba(200,169,107,.25);
    border-radius: 300px;
    z-index: 1;
}

.service-item.service-item-left {

    border-radius: 500px 0 0 500px;

    background:
    linear-gradient(
    to right,
    #EFE7DA,
    #2B2B2B
    );
}

.service-item.service-item-right {

    border-radius: 0 500px 500px 0;

    background:
    linear-gradient(
    to left,
    #EFE7DA,
    #2B2B2B
    );
}

@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}


/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20,20,20,.75);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(20,20,20,.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** TESTIMONIAL PREMIUM ***/
.testimonial-carousel {
    max-width: 760px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 45px;
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 70px;
    height: 70px;

    padding: 0;

    background: transparent !important;

    border-radius: 50%;

    overflow: hidden;

    transition: all .35s ease;
}

.testimonial-carousel .owl-dots .owl-dot img {
    width: 70px !important;
    height: 70px !important;

    object-fit: cover !important;

    border-radius: 50% !important;

    border: 3px solid rgba(200,169,107,.25);

    opacity: .45;

    transition: all .35s ease;
}

.testimonial-carousel .owl-dots .owl-dot:hover img {
    opacity: .85;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    transform: scale(1.1);
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;

    border-color: #C8A96B;

    box-shadow:
        0 0 0 6px rgba(200,169,107,.12),
        0 10px 25px rgba(0,0,0,.25);
}

.testimonial-rating {
    color: #C8A96B;
    letter-spacing: 4px;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-item h5 {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
}

.testimonial-item span {
    color: #C8A96B !important;
}


/*** Footer ***/
@keyframes footerAnimatedBg {
	0% {
        background-position: 0 0;
    }

	100% {
        background-position: -1000px 0;
    }
}

.footer {

    background:
    linear-gradient(
    rgba(15,15,15,.96),
    rgba(20,20,20,.96)
    ),

    url(../img/footer-bg.png);

    background-position: 0px 0px;

    background-repeat: repeat-x;

    animation: footerAnimatedBg 50s linear infinite;
}

/* =========================================
   BODY
========================================= */

/*body {

    background: #F8F5EF;
    letter-spacing: 0.5px;

    color: #555;
}
*/
/* =========================================
   PREMIUM EFFECT
========================================= */

.service-item,
.team-item,
.testimonial-item {

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.service-item:hover,
.team-item:hover,
.testimonial-item:hover {

    transform:translateY(-5px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

.btn-primary,
.btn-outline-primary {

    box-shadow:
    0 4px 18px rgba(200,169,107,.25);
}

.text-primary {
    color: #c8a96b !important;
}

.btn-outline-primary {
    color: #c8a96b;
    border-color: #c8a96b;
}

.btn-outline-primary:hover {
    color: #000;
    background-color: #c8a96b;
    border-color: #c8a96b;
}

.btn-primary {
    color: #000;
    background-color: #c8a96b;
    border-color: #c8a96b;
}

.btn-primary:hover {
    color: #000;
    background-color: rgb(200, 169, 107);
    border-color: rgb(200, 169, 107);
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #c8a96b;
}

a {
    color: #c8a96b;
    text-decoration: none;
}

.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{
    box-shadow:0 0 0 .25rem rgba(200, 169, 107,.5)
}

.btn-check:checked+.btn-outline-primary:focus,.btn-check:active+.btn-outline-primary:focus,.btn-outline-primary:active:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus{
    box-shadow:0 0 0 .25rem rgba(200, 169, 107,.5)
}

/********** Font Style **********/
/* =========================================
   FORCE GLOBAL FONT
========================================= */

/* ALL ELEMENT */

* {

    font-family:
    'Poppins' !important;
}

/* =========================================
   FORCE HEADING FONT
========================================= */

h1,
h2,
h3,
h4,
h5,
h6,

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {

    font-family:
    'Cormorant Garamond' !important;

    font-weight: 700 !important;

    letter-spacing: 1px;

    line-height: 1.1;

    font-style: italic;
}

.display-1,
.display-2 {

    font-size: 5rem;

    font-weight: 600 !important;

    letter-spacing: 2px;
}

/* NAVBAR */

.navbar .nav-link {

    font-family:
    'Poppins' !important;

    text-transform: capitalize;

    letter-spacing: 1.5px;

    font-weight: 500 !important;
}

/* BUTTON */

.btn {

    font-family:
    'Poppins' !important;

    text-transform: capitalize;

    letter-spacing: 1px;

    font-weight: 600 !important;
}

*{
    font-family:'Poppins' !important;
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #000;
    background-color: rgb(200, 169, 107);
    border-color: rgb(200, 169, 107);
    box-shadow: 0 0 0 .25rem rgba(200, 169, 107,.5);
}

.text-capitalize {
    text-transform: capitalize !important;
}

/* =========================================
   HEADER ICON
========================================= */

.header-icon {

    width: 36px;

    height: 36px;

    object-fit: contain;

    vertical-align: middle;
}

.header-icon {

    width: 36px;

    height: 36px;

    object-fit: contain;

    vertical-align: middle;

    filter:
    drop-shadow(
    0 0 8px rgba(200,169,107,.25)
    );

    transition: .4s;
}

.header-icon:hover {

    transform:
    scale(1.05);

    opacity: .9;
}

/* =========================================
   CUSTOM LIST
========================================= */

.custom-list {

    display: flex;

    flex-direction: column;

    align-items: center;
}

.custom-list li {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 14px 22px;

    margin-bottom: 14px;

    width: fit-content;

    max-width: 100%;

    background: transparent;

    border: 1px solid rgba(200,169,107,.15);

    border-radius: 18px;

    color: #555;

    font-size: 15px;

    line-height: 1.8;

    transition: .4s;
}


/* ICON */

.custom-list li i {

    color: #C8A96B;

    font-size: 18px;

    min-width: 20px;
}

/* HOVER */

.custom-list li:hover {

    transform: translateY(-2px);

    background: rgba(255,255,255,.85);

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);
}

/* =========================================
   NAVBAR LOGO
========================================= */

.navbar-logo {

    height: 85px;

    width: auto;

    object-fit: contain;

    transition: .4s;
}

/* HOVER */

.navbar-logo:hover {

    transform: scale(1.03);

    opacity: .95;
}

.social-footer {
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.15) !important;
}

.social-footer:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.footer-brand {
    display: inline-block;
}

.footer-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

/* FOOTER LINK */
.footer a,
.footer a:visited {
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none;
}

.footer a:hover,
.footer a:focus,
.footer a:active {
    color: #c8a96b !important;
}

/* FOOTER SOCIAL ICON */
.footer .social-footer {
    background: transparent !important;
    color: rgba(255,255,255,0.75) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    box-shadow: none !important;
}

.footer .social-footer:hover,
.footer .social-footer:focus,
.footer .social-footer:active {
    color: #c8a96b !important;
    background: rgba(255,255,255,0.08) !important;
    border-color: #c8a96b !important;
    box-shadow: none !important;
}


.footer-description{
    max-width:400px;
    color:rgba(255,255,255,.75);
    line-height:1.8;
}

.footer-link{
    color:#c8a96b !important;
    text-decoration:none;
}

.footer-link:hover{
    color:#fff !important;
}

.social-footer{
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:rgba(255,255,255,.75) !important;
    border:1px solid rgba(255,255,255,.15) !important;
    transition:.3s;
}

.social-footer:hover{
    color:#c8a96b !important;
    border-color:#c8a96b !important;
    background:rgba(255,255,255,.05);
}

.footer-contact-link {
    color: rgba(255,255,255,.75) !important;
    text-decoration: none;
}

.footer-contact-link:hover {
    color: #c8a96b !important;
}

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

.footer-contact-link,
.footer p {
    font-size: 12px;
}

.footer h5 {
    font-size: 16px;
}

.footer-social {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-social .social-footer {
    display: inline-flex !important;
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 auto;
}

.shankara-about-hero {
    position: relative;
    min-height: 80vh;
    background: url("../img/about-hero.png") center center / cover no-repeat;
    display: flex;
    align-items: flex-end;
}

.shankara-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.85));
}

.shankara-about-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

.shankara-about-hero h1 {
    color: #fff;
    font-size: 92px;
    font-weight: 600;
    letter-spacing: -2px;
}

.shankara-story-section {
    background: #f7f3ea;
    color: #111;
    padding: 90px 0;
}

.shankara-story-section h2,
.shankara-values-section h2 {
    font-size: 42px;
    color: #111;
}

.shankara-story-section p,
.shankara-values-section p {
    font-size: 18px;
    line-height: 1.9;
    color: #222;
}

.shankara-values-section {
    background: #e9e3d5;
    padding: 90px 0;
}

.shankara-value-card {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #000;
}

.shankara-value-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85;
    transition: .5s;
}

.shankara-value-card:hover img {
    transform: scale(1.08);
    opacity: .65;
}

.value-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
}

.value-card-content h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.value-card-content span {
    display: block;
    width: 45px;
    height: 3px;
    background: #c8a96b;
    margin-bottom: 15px;
}

.value-card-content p {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    line-height: 1.7;
}

.shankara-stats-section {
    background: #111;
    padding: 90px 0;
}

.stat-item {
    border-right: 1px solid rgba(255,255,255,.25);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item h3 {
    color: #c8a96b;
    font-size: 72px;
    font-style: italic;
    margin-bottom: 15px;
}

.stat-item p {
    color: #fff;
    font-size: 20px;
}

@media (max-width: 991px) {
    .shankara-about-hero h1 {
        font-size: 56px;
    }

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.25);
        padding: 30px 0;
    }

    .stat-item:last-child {
        border-bottom: 0;
    }
}

.project-card {
    position: relative;
    overflow: hidden;
    height: 420px;
    background: #111;
}

.project-img,
.project-img img {
    width: 100%;
    height: 100%;
}

.project-img img {
    object-fit: cover;
    transition: .5s;
}

.project-card:hover .project-img img {
    transform: scale(1.08);
    opacity: .65;
}

.project-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
}

.project-content span {
    color: #c8a96b;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-content h5 {
    color: #fff;
    margin-top: 8px;
    margin-bottom: 5px;
}

.project-content p {
    color: rgba(255,255,255,.75);
    margin-bottom: 0;
    font-size: 13px;
}

/* =========================================
   FINAL EDITORIAL SERVICE LAYOUT
========================================= */

/* wrapper tanpa jarak */
#servicesContainer .editorial-service-wrapper,
#homeServicesContainer .editorial-service-wrapper {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

#servicesContainer .editorial-service-wrapper .col-12,
#homeServicesContainer .editorial-service-wrapper .col-12 {
    margin: 0 !important;
    padding: 0 !important;
}

/* card 50:50 */
.editorial-service-card {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 50% 50% !important;
    align-items: stretch !important;
    min-height: 300px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    overflow: hidden !important;
}

/* alternating kiri-kanan */
.editorial-service-wrapper .col-12:nth-child(even) .editorial-service-image {
    order: 2 !important;
}

.editorial-service-wrapper .col-12:nth-child(even) .editorial-service-content {
    order: 1 !important;
}

/* image mengikuti tinggi content */
.editorial-service-image {
    position: relative !important;
    min-height: 300px !important;
    height: auto !important;
    overflow: hidden !important;
}

.editorial-service-image img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform .7s ease !important;
}

.editorial-service-card:hover .editorial-service-image img {
    transform: scale(1.05);
}

/* content */
.editorial-service-content {
    min-height: 300px !important;
    height: auto !important;
    padding: 42px 70px !important;
    background: #F8F5EF !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

/* hilangkan nomor dan category */
.editorial-service-number,
.editorial-service-category {
    display: none !important;
}

.editorial-service-text {
    width: 100%;
    max-width: 520px;
}

/* title gold */
.editorial-service-text h2 {
    color: #C8A96B !important;
    font-family: 'Cormorant Garamond' !important;
    font-style: italic !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin-bottom: 18px !important;
    text-transform: none !important;
}

/* description */
.editorial-service-text p {
    color: #111 !important;
    font-size: 15px !important;
    line-height: 1.85 !important;
    margin-bottom: 26px !important;
}

/* read more */
.editorial-service-link {
    display: inline-flex !important;
    align-items: center !important;
    color: #111 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid #C8A96B !important;
    padding-bottom: 8px !important;
    text-decoration: none !important;
}

.editorial-service-link:hover {
    color: #C8A96B !important;
}

/* mobile */
@media (max-width: 991px) {
    .editorial-service-card {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .editorial-service-wrapper .col-12:nth-child(even) .editorial-service-image,
    .editorial-service-wrapper .col-12:nth-child(even) .editorial-service-content {
        order: unset !important;
    }

    .editorial-service-image {
        min-height: 260px !important;
        height: 260px !important;
    }

    .editorial-service-image img {
        position: absolute !important;
        height: 100% !important;
    }

    .editorial-service-content {
        min-height: auto !important;
        padding: 35px 28px !important;
    }

    .editorial-service-text h2 {
        font-size: 34px !important;
    }
}

/* =========================================
   FINAL SERVICE EDITORIAL REFINEMENT
========================================= */

/* 1. Kurangi jarak atas section */
.service-page-container {
    max-width: 1280px !important;
    padding-top: 60px !important;
}

/* 2. Title lebih clean */
.service-page-container .title {
    margin-bottom: 35px !important;
}

.service-page-container .title h5 {
    color: #C8A96B !important;
    letter-spacing: 2px;
    font-size: 15px !important;
}

.service-page-container .title h1 {
    font-size: 42px !important;
    margin-left: auto;
    margin-right: auto;
}

/* 3. Container service lebih lebar & rapat */
#servicesContainer,
#homeServicesContainer {
    margin-top: 20px !important;
}

#servicesContainer .editorial-service-wrapper,
#homeServicesContainer .editorial-service-wrapper {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 4. Card lebih compact */
.editorial-service-card {
    grid-template-columns: 50% 50% !important;
    min-height: 280px !important;
    border: none !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.editorial-service-image {
    min-height: 280px !important;
}

.editorial-service-content {
    min-height: 280px !important;
    padding: 38px 64px !important;
    background: #F8F5EF !important;
}

/* 5. Text lebih seimbang */
.editorial-service-text {
    max-width: 480px !important;
}

.editorial-service-text h2 {
    color: #C8A96B !important;
    font-size: 40px !important;
    margin-bottom: 16px !important;
}

.editorial-service-text p {
    color: #111 !important;
    font-size: 15px !important;
    line-height: 1.85 !important;
    max-width: 460px !important;
    margin-bottom: 24px !important;
}

/* 6. Gambar lebih cinematic */
.editorial-service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.08);
    pointer-events: none;
    z-index: 1;
}

.editorial-service-image img {
    z-index: 0;
}

/* Link lebih premium */
.editorial-service-link {
    color: #111 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid #C8A96B !important;
    padding-bottom: 8px !important;
}

.editorial-service-link:hover {
    color: #C8A96B !important;
}

/* Mobile */
@media (max-width: 991px) {
    .service-page-container {
        padding-top: 50px !important;
    }

    .service-page-container .title h1 {
        font-size: 34px !important;
    }

    .editorial-service-card {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .editorial-service-image {
        min-height: 250px !important;
        height: 250px !important;
    }

    .editorial-service-content {
        min-height: auto !important;
        padding: 32px 26px !important;
    }

    .editorial-service-text h2 {
        font-size: 32px !important;
    }
}

/* FINAL SERVICE POLISH */
.service-page-container .title h1 {
    font-size: 42px !important;
    max-width: 1000px !important;
    white-space: nowrap;
    line-height: 1.05 !important;
}

#servicesContainer,
#homeServicesContainer {
    margin-top: 45px !important;
}

.editorial-service-card {
    min-height: 260px !important;
}

.editorial-service-image {
    min-height: 260px !important;
}

.editorial-service-content {
    min-height: 260px !important;
    padding: 34px 64px !important;
}

.editorial-service-text h2 {
    font-size: 38px !important;
    margin-bottom: 14px !important;
}

.editorial-service-text p {
    font-size: 15px !important;
    line-height: 1.75 !important;
    max-width: 420px !important;
}

@media (max-width: 991px) {
    .service-page-container .title h1 {
        font-size: 34px !important;
    }
}

/* =========================================
   PREMIUM GALLERY GRID
========================================= */

.gallery-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 0;
    overflow: hidden;
}

.gallery-premium-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111;
}

.gallery-premium-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease, opacity .7s ease;
}

.gallery-premium-card:hover img {
    transform: scale(1.08);
    opacity: .65;
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-premium-overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.05));
    opacity: 0;
    transition: .45s ease;
}

.gallery-premium-card:hover .gallery-premium-overlay {
    opacity: 1;
}

.gallery-premium-overlay span {
    color: #c8a96b;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gallery-premium-overlay h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 6px;
}

.gallery-premium-overlay p {
    color: rgba(255,255,255,.75);
    font-size: 13px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .gallery-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 575px) {
    .gallery-premium-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* =========================================
   CONTACT PAGE BRAND FIX
   remove template pink accent
========================================= */

/* Contact social links */
.table-dark a,
.table-dark a:visited {
    color: #c8a96b !important;
    text-decoration: none !important;
}

.table-dark a:hover,
.table-dark a:focus,
.table-dark a:active {
    color: #ffffff !important;
}

/* Contact form input */
#contactForm .form-control,
#contactForm .form-select {
    color: #111 !important;
    background-color: #EFE7DA !important;
    border: 1px solid rgba(200,169,107,.25) !important;
    box-shadow: none !important;
}

/* Placeholder / label */
#contactForm .form-floating label {
    color: rgba(43,43,43,.65) !important;
}

/* Saat input aktif */
#contactForm .form-control:focus,
#contactForm .form-select:focus {
    color: #111 !important;
    background-color: #F8F5EF !important;
    border-color: #c8a96b !important;
    box-shadow: 0 0 0 .25rem rgba(200,169,107,.18) !important;
}

/* Autofill Chrome */
#contactForm input:-webkit-autofill,
#contactForm input:-webkit-autofill:hover,
#contactForm input:-webkit-autofill:focus {
    -webkit-text-fill-color: #111 !important;
    -webkit-box-shadow: 0 0 0 1000px #EFE7DA inset !important;
    box-shadow: 0 0 0 1000px #EFE7DA inset !important;
}

/* Button contact */
#contactForm .btn-outline-primary {
    color: #c8a96b !important;
    border-color: #c8a96b !important;
    background: transparent !important;
    box-shadow: none !important;
}

#contactForm .btn-outline-primary:hover,
#contactForm .btn-outline-primary:focus,
#contactForm .btn-outline-primary:active {
    color: #111 !important;
    background: #c8a96b !important;
    border-color: #c8a96b !important;
    box-shadow: 0 0 0 .25rem rgba(200,169,107,.18) !important;
}

/* Table border accent */
.contact-page-table,
.table-dark {
    border-color: rgba(200,169,107,.25) !important;
}

.table-dark td {
    border-color: rgba(200,169,107,.18) !important;
}

.footer-copyright {
    border-top: 1px solid rgba(200,169,107,.15);

    font-size: 14px;

    color: rgba(255,255,255,.65);

    letter-spacing: .5px;
}

.footer-copyright span {
    color: rgba(255,255,255,.75);
}

.hero-video {
    height: 100vh;
    object-fit: cover;
    display: block;
}

#header-carousel .carousel-item {
    height: 100vh;
}

#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* =========================================
   RESPONSIVE FINAL FIX
========================================= */

/* Tablet */
@media (max-width: 991px) {

    body {
        overflow-x: hidden;
    }

    .navbar {
        background: rgba(20,20,20,.96) !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .navbar-logo {
        height: 70px !important;
    }

    .navbar .navbar-nav {
        background: rgba(20,20,20,.96);
        padding: 15px 0;
        margin-top: 10px;
        border-top: 1px solid rgba(200,169,107,.25);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 15px !important;
        font-size: 15px !important;
    }

    .display-1,
    .display-2 {
        font-size: 3.2rem !important;
    }

    .carousel-caption {
        padding: 120px 25px 60px;
    }

    #header-carousel .carousel-item,
    .hero-video {
        height: 80vh !important;
    }

    .title .title-left h1,
    .title .title-center h1,
    .title .title-right h1 {
        font-size: 36px !important;
    }

    .service-page-container .title h1 {
        white-space: normal !important;
        font-size: 34px !important;
        max-width: 100% !important;
    }

    .editorial-service-card {
        grid-template-columns: 1fr !important;
    }

    .editorial-service-wrapper .col-12:nth-child(even) .editorial-service-image,
    .editorial-service-wrapper .col-12:nth-child(even) .editorial-service-content {
        order: unset !important;
    }

    .editorial-service-image {
        height: 260px !important;
        min-height: 260px !important;
    }

    .editorial-service-content {
        padding: 32px 26px !important;
        min-height: auto !important;
    }

    .editorial-service-text h2 {
        font-size: 32px !important;
    }

    .editorial-service-text p {
        max-width: 100% !important;
    }

    .gallery-premium-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 220px !important;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
    }

    .testimonial-carousel {
        max-width: 100% !important;
        padding: 0 20px;
    }

    .footer .col-lg-6 {
        text-align: left !important;
    }

    .footer-social {
        justify-content: flex-start !important;
    }
}

/* Mobile */
@media (max-width: 575px) {

    .container,
    .container-fluid {
        max-width: 100%;
    }

    .navbar-logo {
        height: 58px !important;
    }

    .display-1,
    .display-2 {
        font-size: 2.4rem !important;
        line-height: 1.1 !important;
    }

    #header-carousel .carousel-item,
    .hero-video {
        height: 72vh !important;
    }

    .carousel-caption {
        padding: 110px 20px 50px;
    }

    .carousel-caption h1 {
        font-size: 38px !important;
    }

    .carousel-caption p {
        font-size: 14px !important;
    }

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

    .title .title-left h1,
    .title .title-center h1,
    .title .title-right h1 {
        font-size: 30px !important;
    }

    .editorial-service-image {
        height: 230px !important;
        min-height: 230px !important;
    }

    .editorial-service-content {
        padding: 28px 22px !important;
    }

    .editorial-service-text h2 {
        font-size: 28px !important;
    }

    .editorial-service-text p {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .gallery-premium-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 260px !important;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .testimonial-carousel .owl-dots {
        gap: 10px;
    }

    .testimonial-carousel .owl-dots .owl-dot,
    .testimonial-carousel .owl-dots .owl-dot img {
        width: 56px !important;
        height: 56px !important;
    }

    .footer {
        text-align: left;
    }

    .footer-logo {
        max-height: 48px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* =====================================
   MOBILE TITLE
===================================== */

@media (max-width:575px){

    .title{

        padding-left:18px;
        padding-right:18px;

    }

    .title .title-center{

        width:100%;

    }

    .title .title-center h1{

        font-size:34px !important;

        display:inline-block;

        max-width:100%;

        line-height:1.15;

    }

}

/* =========================================
   HERO TITLE MOBILE FIX
========================================= */
@media (max-width: 575px) {
    #header-carousel .carousel-caption {
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    #header-carousel .carousel-caption h1,
    #header-carousel .carousel-caption .display-1,
    #header-carousel .carousel-caption .display-2 {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;

        white-space: normal !important;
        overflow: visible !important;
        overflow-wrap: normal !important;
        word-break: normal !important;

        text-align: center !important;
        line-height: 1.1 !important;
    }
}