	.hero-wrap {
	    position: relative;
	    text-align: center;
	    min-height: 625px;
	}

	/* Default untuk desktop */
	.hero-wrap h2 {
	    font-weight: bold;
	    font-size: 40px;
	    color: #ffffff;
	}

	/* Tablet */
	@media (max-width: 991px) {
	    .hero-wrap h2 {
	        font-size: 30px;
	    }
	}

	/* Mobile */
	@media (max-width: 767px) {
	    .hero-wrap {
	        padding: 40px 0;
	        background-position: center;
	        min-height: 500px;

	    }

	    .hero-wrap h2 {
	        font-size: 22px;
	        line-height: 1.4;
	    }

	    .hero-wrap p {
	        font-size: 14px;
	    }
	}

	.destination {
	    background: #fff;
	    border-radius: 8px;
	    overflow: hidden;
	    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	    transition: transform 0.3s ease;
	    max-width: 350px;
	    /* Batas maksimal ukuran card */
	    margin: 0 auto;
	    /* Biar center kalau cuma 1 card */
	}

	.destination img {
	    width: 100%;
	    height: auto;
	    display: block;
	}

	.destination:hover {
	    transform: translateY(-5px);
	}

	@media (max-width: 768px) {
	    .destination {
	        margin-bottom: 20px;
	    }
	}

	.section {
	    padding: 50px 20px;
	    max-width: 1200px;
	    margin: auto;
	    text-align: center;
	}

	.ftco-section {
	    margin: auto;
	}

	.section p {
	    font-size: 16px;
	    color: #666;
	    margin-bottom: 40px;
	}

	.cards {
	    display: grid;
	    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	    gap: 20px;
	}

	.card {
	    background: white;
	    border-radius: 12px;
	    padding: 25px;
	    text-align: center;
	    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	}

	.card-icon {
	    background: #f0cc20;
	    color: white;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    width: 60px;
	    height: 60px;
	    border-radius: 8px;
	    font-size: 26px;
	    margin: 0 auto 15px auto;
	    /* Auto untuk center */
	}

	.card h3 {
	    font-size: 18px;
	    font-weight: bold;
	    margin-bottom: 10px;
	}

	.card p {
	    font-size: 14px;
	    color: #555;
	}

	.umroh-section {
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    gap: 20px;
	    padding: 30px;
	    background: #fff;
	    border-radius: 15px;
	    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	    max-width: 1100px;
	    margin: 40px auto;
	}

	.umroh-image {
	    flex: 1;
	}

	.umroh-image img {
	    width: 100%;
	    border-radius: 12px;
	    display: block;
	}

	.umroh-content {
	    flex: 1;
	}

	.umroh-content h2 {
	    font-size: 28px;
	    font-weight: bold;
	    margin-bottom: 10px;
	}

	.umroh-content p {
	    color: #777;
	    margin-bottom: 20px;
	    line-height: 1.5;
	}

	.umroh-content .quote {
	    font-style: italic;
	    color: #ccc;
	    margin-bottom: 10px;
	}

	.umroh-content .quote-author {
	    font-weight: bold;
	}

	.btn-whatsapp {
	    display: inline-block;
	    background: #f0cc20;
	    color: #fff;
	    padding: 12px 20px;
	    border-radius: 8px;
	    text-decoration: none;
	    font-weight: bold;
	    transition: 0.3s;
	}

	.btn-whatsapp:hover {
	    background: #f0cc20;
	}

	/* Responsive */
	@media (max-width: 768px) {
	    .umroh-section {
	        flex-direction: column;
	    }
	}