.header-area {
    background: linear-gradient(135deg, #203484 0%, #1a2a6b 50%, #152153 100%);
}

.header-area .main-nav .nav li a.active {
    color: #f3db25;
}

.header-area .main-nav .nav li:hover a {
    color: #f3db25;
}

.header-area .main-nav .nav li a {
    color: #fff;
}

.header-area .main-nav .nav li.button a {
    background-color: #1e1e1e;
}

.header-area .main-nav .nav li.button a {
    padding-right: 15px;
}

.header-area .main-nav .nav li.button a {
    background-color: #1e1e1e;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    border-radius: 20px;
    padding-left: 0px;
}

.header-area .main-nav .nav li.button a i {
    background-color: #f35525;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    margin-left: -1px;
}

.header-area .main-nav .nav li.button.hover a {
    background-color: #1e1e1e;
}

.header-area .main-nav .nav li.button.hover a i {
    color: #fff;
}

.dropdown-menu {
    background-color: #0091a5;
}

.header-area .main-nav .nav li ul {
    background-color: #0091a5;
    color: #fff;
}

.header-area .main-nav .nav li:hover ul li a {
    color: #fff;
    background-color: #0091a5;
}

.header-area .main-nav .nav li ul li:hover a {
    color: #f3db25;
}

.contact-page #contact-form select {
    width: 100%;
    height: 44px;
    border-radius: 22px;
    background-color: #f6f6f6;
    border: none;
    margin-bottom: 30px;
    font-size: 14px;
    padding: 0px 15px;
}

.contact-page #contact-form textarea {
    width: 100%;
    height: 150px;
    max-height: 180px;
    border-radius: 22px;
    background-color: #f6f6f6;
    border: none;
    margin-bottom: 40px;
    font-size: 14px;
    padding: 15px 15px;
}

.contact-page #contact-form button {
    background-color: #1e1e1e;
    height: 44px;
    border-radius: 22px;
    padding: 0px 20px;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.5s;
}

.contact-page #contact-form button:hover {
    background-color: #9ec5db;
}

.page-heading {
    background: linear-gradient(135deg, #203484 0%, #1a2a6b 50%, #0f1a3f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><path d="M0,0 C150,100 350,0 500,50 C650,100 850,0 1000,50 L1000,100 L0,100 Z"/></svg>');
    background-size: cover;
}

.page-heading h3 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.traffic-info {
    border: 1px solid #0091a5;
    border-radius: 8px;
    background: #0091a5;
    color: #fff;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
    color: #fff;
}

.traffic-info h5 {
    margin-bottom: 20px;
}

.flag-icon {
    width: 24px;
    height: 16px;
    display: inline-block;
}

.section-heading {
    margin-bottom: 20px;
}

footer {
    color: #fff;
}

footer p {
    text-align: center;
    line-height: 28px;
}

.custom-5-column .col-lg-2 {
    width: 20%;
}

@media (max-width: 960px) {
    .header-area.header-sticky .nav li a {
        color: #fff;
    }

    .header-area.header-sticky .nav li.button a {
        color: #1e1e1e;
    }

    .header-area .main-nav .nav li.button a {
        background-color: #1e1e1e !important;
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        text-transform: none;
        border-radius: 0px !important;
        padding-left: 0px;
    }

    .header-area.header-sticky .nav li a:hover,
    .header-area.header-sticky .nav li a.active {
        color: #f3db25 !important;
        opacity: 1;
    }

    .header-area .main-nav .nav li.button:hover a,
    .header-area .main-nav .nav li.button:hover a i {
        color: #fff !important;
    }

    .header-area .main-nav .nav li.button a i {
        color: #fff;
    }

    .header-area .main-nav .nav li.button a:hover i {
        color: #f3db25;
    }

    .header-area .main-nav .nav li ul {
        /* background-color: #fff; */
        color: #1e1e1e;
        position: absolute;
        top: 100%; /* Menempatkan dropdown tepat di bawah item */
        left: 0;
        width: 100%; /* Menyesuaikan lebar dropdown agar sama dengan item parent */
        z-index: 1000;
        transform: translate3d(0px, 0px, 0px);
    }

    .header-area .main-nav .nav li:hover ul li a {
        color: #fff;
    }
}

@media (max-width: 992px) {
    .sub-header {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-area.header-sticky .nav li a {
        color: #1e1e1e;
    }

    .header-area .main-nav .nav li:hover ul li a {
        color: #1e1e1e;
        background-color: #fff;
    }

    .header-area .main-nav .nav li ul {
        background-color: #fff;
    }

    .page-heading h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-heading {
        padding: 60px 0;
    }

    .page-heading h3 {
        font-size: 1.8rem;
    }
}

.preloader-inner .dots span {
    background: #fff;
}

.preloader-inner .dot {
    background: #fff;
}

/* Google Translate  */
#google_translate_element span img {
    width: 1px;
}

/* =============== Home Page Style ==================== */ 


/* Whatsapp Toggle  */
#wa-close-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* Responsive */
@media (max-width: 480px) {
    #wa-chat-widget {
        width: 280px !important;
        right: 10px !important;
    }

    #whatsapp-widget {
        right: 15px !important;
        bottom: 15px !important;
    }

    #wa-float-btn {
        width: 55px !important;
        height: 55px !important;
    }
}

/* Widget */

.floating-pdf-widget {
    position: absolute;
    top: 170px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateX(0);
    transition: all 0.3s ease;
    animation: slideIn 0.8s ease-out;
    max-width: 250px;
}

.floating-pdf-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.floating-pdf-widget .pdf-link {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: white;
    position: relative;
}

.floating-pdf-widget .widget-icon {
    font-size: 24px;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.floating-pdf-widget .widget-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.floating-pdf-widget .widget-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.floating-pdf-widget .widget-subtitle {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 400;
}

/* Animasi masuk */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animasi keluar */
@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.floating-pdf-widget.closing {
    animation: slideOut 0.3s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-pdf-widget {
        top: 180px;
        right: 15px;
        max-width: 200px;
    }

    .floating-pdf-widget .pdf-link {
        padding: 12px;
    }

    .floating-pdf-widget .widget-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin-right: 10px;
    }

    .floating-pdf-widget .widget-title {
        font-size: 13px;
    }

    .floating-pdf-widget .widget-subtitle {
        font-size: 10px;
    }
}

/* Efek pulse Widget */
.floating-pdf-widget::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    border-radius: 17px;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }

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

footer {
	margin-top: 0;
}

.main-banner {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.banner-item {
	position: relative;
	height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg,
			rgba(32, 52, 132, 0.85) 0%,
			rgba(32, 52, 132, 0.65) 50%,
			rgba(0, 0, 0, 0.7) 100%);
	z-index: 1;
}

.banner-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
	max-width: 800px;
	padding: 40px;
	animation: fadeInUp 1s ease-out;
}

.banner-content h2 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	line-height: 1.2;
	color: #ffffff !important;
}

.banner-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.9;
	line-height: 1.6;
	color: #ffffff !important;
}

.banner-btn {
	display: inline-block;
	padding: 15px 40px;
	background: linear-gradient(45deg, #203484, #3b5998);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(32, 52, 132, 0.3);
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.banner-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(32, 52, 132, 0.4);
	color: white;
	text-decoration: none;
}

.banner-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.banner-btn:hover::before {
	left: 100%;
}

.banner-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(32, 52, 132, 0.7);
	color: white;
	border: none;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 3;
	backdrop-filter: blur(10px);
}

.banner-nav:hover {
	background: rgba(32, 52, 132, 0.9);
	transform: translateY(-50%) scale(1.1);
	color: white;
}

.banner-nav.prev {
	left: 30px;
}

.banner-nav.next {
	right: 30px;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.banner-decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.banner-decoration::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 40%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05));
	transform: rotate(15deg);
	animation: float 6s ease-in-out infinite;
}

.banner-decoration::after {
	content: '';
	position: absolute;
	bottom: -50%;
	left: -20%;
	width: 30%;
	height: 200%;
	background: linear-gradient(45deg, rgba(255, 255, 255, 0.03), transparent);
	transform: rotate(-15deg);
	animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px) rotate(15deg);
	}

	50% {
		transform: translateY(-20px) rotate(15deg);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.banner-content h2 {
		font-size: 2.5rem;
	}

	.banner-content p {
		font-size: 1rem;
	}

	.banner-btn {
		padding: 12px 30px;
		font-size: 1rem;
	}

	.banner-nav {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}

	.banner-nav.prev {
		left: 15px;
	}

	.banner-nav.next {
		right: 15px;
	}
}

@media (max-width: 480px) {
	.banner-content {
		padding: 20px;
	}

	.banner-content h2 {
		font-size: 2rem;
	}

	.main-banner {
		height: 70vh;
	}

	.banner-item {
		height: 70vh;
	}
}
